Amitay (amitayd)

Race #6

View Pit Stop page for race #6 by amitaydGhost race

View profile for Amitay (amitayd)

Official speed 39.10 wpm (47.26 seconds elapsed during race)
Race Start September 16, 2013 3:01:09pm UTC
Race Finish September 16, 2013 3:01:56pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")