View Pit Stop page for race #4 by silvascientist — Ghost race
View profile for Josh (silvascientist)
Official speed | 37.75 wpm (48.95 seconds elapsed during race) |
---|---|
Race Start | February 21, 2013 6:51:20pm UTC |
Race Finish | February 21, 2013 6:52:09pm UTC |
Outcome | No win (3 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") |