John (gonryun)

Race #5

View Pit Stop page for race #5 by gonryunGhost race

View profile for John (gonryun)

Official speed 35.47 wpm (52.10 seconds elapsed during race)
Race Start October 1, 2013 7:25:24pm UTC
Race Finish October 1, 2013 7:26:16pm UTC
Outcome Win (1 of 3)
Opponents 2. winasforcepta (33.13 wpm)
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")