@dudiellon (dudiellon)

Race #1524

View Pit Stop page for race #1524 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 71.02 wpm (26.02 seconds elapsed during race)
Race Start April 26, 2013 3:43:27am UTC
Race Finish April 26, 2013 3:43:53am UTC
Outcome Win (1 of 3)
Accuracy 96.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")