View Pit Stop page for race #1 by adamrune50 — Ghost race
View profile for KeyboardWarrior (adamrune50)
Official speed | 48.66 wpm (37.98 seconds elapsed during race) |
---|---|
Race Start | December 5, 2012 2:49:08pm UTC |
Race Finish | December 5, 2012 2:49:46pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 87.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") |