View Pit Stop page for race #5 by amitayd — Ghost race
View profile for Amitay (amitayd)
Official speed | 29.88 wpm (61.85 seconds elapsed during race) |
---|---|
Race Start | July 13, 2013 2:33:52am UTC |
Race Finish | July 13, 2013 2:34:54am UTC |
Outcome | No win (2 of 3) |
Accuracy | 91.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") |