tarou (mint25)

Race #3

View Pit Stop page for race #3 by mint25Ghost race

View profile for tarou (mint25)

Official speed 77.90 wpm (23.72 seconds elapsed during race)
Race Start July 30, 2013 5:53:30pm UTC
Race Finish July 30, 2013 5:53:54pm UTC
Outcome No win (2 of 3)
Accuracy 98.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")