Daniel (partytoss)

Race #38

View Pit Stop page for race #38 by partytossGhost race

View profile for Daniel (partytoss)

Official speed 60.54 wpm (30.53 seconds elapsed during race)
Race Start April 20, 2013 4:59:07am UTC
Race Finish April 20, 2013 4:59:37am UTC
Outcome Win (1 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")