Kevin (kman324)

Race #4

View Pit Stop page for race #4 by kman324Ghost race

View profile for Kevin (kman324)

Official speed 73.01 wpm (25.31 seconds elapsed during race)
Race Start August 1, 2013 9:07:34pm UTC
Race Finish August 1, 2013 9:07:59pm UTC
Outcome Win (1 of 3)
Accuracy 99.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")