Nate (n8thaniel)

Race #4

View Pit Stop page for race #4 by n8thanielGhost race

View profile for Nate (n8thaniel)

Official speed 43.49 wpm (42.49 seconds elapsed during race)
Race Start March 17, 2014 7:26:16pm UTC
Race Finish March 17, 2014 7:26:59pm UTC
Outcome Win (1 of 2)
Opponents 2. skyminer707 (41.57 wpm)
Accuracy 93.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")