Andrew (android2102)

Race #11

View Pit Stop page for race #11 by android2102Ghost race

View profile for Andrew (android2102)

Official speed 42.93 wpm (43.05 seconds elapsed during race)
Race Start March 19, 2017 3:42:21am UTC
Race Finish March 19, 2017 3:43:04am UTC
Outcome No win (2 of 3)
Accuracy 95.0%
Points 0.00
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")