View Pit Stop page for race #2 by leockard — Ghost race
View profile for Leonardo (leockard)
Official speed | 58.37 wpm (31.66 seconds elapsed during race) |
---|---|
Race Start | March 1, 2013 10:36:22pm UTC |
Race Finish | March 1, 2013 10:36:54pm UTC |
Outcome | No win (2 of 5) |
Opponents |
3. fjra (42.81 wpm) 5. rsync (32.83 wpm) |
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") |