@dudiellon (dudiellon)

Race #996

View Pit Stop page for race #996 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 61.87 wpm (29.87 seconds elapsed during race)
Race Start November 9, 2011 9:02:48pm UTC
Race Finish November 9, 2011 9:03:18pm UTC
Outcome No win (2 of 3)
Accuracy 87.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")