Avijit (eggsy001)

Race #4

View Pit Stop page for race #4 by eggsy001Ghost race

View profile for Avijit (eggsy001)

Official speed 50.31 wpm (36.73 seconds elapsed during race)
Race Start June 6, 2023 9:32:02am UTC
Race Finish June 6, 2023 9:32:39am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 17.61
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")