Tony (yehjunwei)

Race #4

View Pit Stop page for race #4 by yehjunweiGhost race

View profile for Tony (yehjunwei)

Official speed 36.06 wpm (51.25 seconds elapsed during race)
Race Start April 13, 2013 2:04:31am UTC
Race Finish April 13, 2013 2:05:22am UTC
Outcome No win (2 of 3)
Accuracy 90.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")