@dudiellon (dudiellon)

Race #1546

View Pit Stop page for race #1546 by dudiellonGhost race

View profile for @dudiellon (dudiellon)

Official speed 64.57 wpm (28.62 seconds elapsed during race)
Race Start January 31, 2015 7:09:00pm UTC
Race Finish January 31, 2015 7:09:28pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")