daniel3131 (daniel3131)

Race #9

View Pit Stop page for race #9 by daniel3131Ghost race

View profile for daniel3131 (daniel3131)

Official speed 64.83 wpm (28.51 seconds elapsed during race)
Race Start October 15, 2019 9:21:59am UTC
Race Finish October 15, 2019 9:22:27am UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 22.69
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")