Henry (henrym0503)

Race #15

View Pit Stop page for race #15 by henrym0503Ghost race

View profile for Henry (henrym0503)

Official speed 31.87 wpm (57.99 seconds elapsed during race)
Race Start May 31, 2016 11:08:42pm UTC
Race Finish May 31, 2016 11:09:40pm UTC
Outcome No win (2 of 2)
Accuracy 94.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")