alex (alexsf_9000)

Race #1

View Pit Stop page for race #1 by alexsf_9000Ghost race

View profile for alex (alexsf_9000)

Official speed 28.52 wpm (64.80 seconds elapsed during race)
Race Start June 9, 2023 4:11:58pm UTC
Race Finish June 9, 2023 4:13:03pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 9.98
Text #10002 (Length: 154 characters)

import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")