Leo (barneyl)

Race #77

View Pit Stop page for race #77 by barneylGhost race

View profile for Leo (barneyl)

Official speed 46.44 wpm (39.79 seconds elapsed during race)
Race Start June 11, 2015 7:45:38pm UTC
Race Finish June 11, 2015 7:46:18pm UTC
Outcome No win (3 of 3)
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")