Noah (licahfox)

Race #1

View Pit Stop page for race #1 by licahfoxGhost race

View profile for Noah (licahfox)

Official speed 100.97 wpm (18.30 seconds elapsed during race)
Race Start December 20, 2010 4:20:20pm UTC
Race Finish December 20, 2010 4:20:38pm UTC
Outcome Win (1 of 3)
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")