Daniel (partytoss)

Race #68

View Pit Stop page for race #68 by partytossGhost race

View profile for Daniel (partytoss)

Official speed 56.10 wpm (32.94 seconds elapsed during race)
Race Start April 28, 2013 2:28:47am UTC
Race Finish April 28, 2013 2:29:20am UTC
Outcome No win (2 of 3)
Accuracy 96.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")