patrick (flash225)

Race #6

View Pit Stop page for race #6 by flash225Ghost race

View profile for patrick (flash225)

Official speed 28.96 wpm (63.81 seconds elapsed during race)
Race Start June 12, 2023 2:58:36am UTC
Race Finish June 12, 2023 2:59:40am UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 10.14
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")