Jim (jimtincanson)

Race #1

View Pit Stop page for race #1 by jimtincansonGhost race

View profile for Jim (jimtincanson)

Official speed 62.33 wpm (29.65 seconds elapsed during race)
Race Start July 23, 2023 5:55:41pm UTC
Race Finish July 23, 2023 5:56:11pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 21.82
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")