View Pit Stop page for race #3 by gabriellima — Ghost race
View profile for Gabriel (gabriellima)
Official speed | 31.70 wpm (58.30 seconds elapsed during race) |
---|---|
Race Start | May 22, 2011 2:48:37pm UTC |
Race Finish | May 22, 2011 2:49:35pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. elienai (29.87 wpm) |
Accuracy | 84.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") |