Unknown (chess1234)

Race #12

View Pit Stop page for race #12 by chess1234Ghost race

View profile for Unknown (chess1234)

Official speed 47.58 wpm (38.84 seconds elapsed during race)
Race Start April 24, 2015 9:40:48am UTC
Race Finish April 24, 2015 9:41:27am UTC
Outcome Win (1 of 3)
Accuracy 77.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")