View Pit Stop page for race #3 by andromeduck — Ghost race
View profile for James (andromeduck)
Official speed | 39.62 wpm (46.64 seconds elapsed during race) |
---|---|
Race Start | February 5, 2014 5:10:59am UTC |
Race Finish | February 5, 2014 5:11:46am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. i8pp (44.03 wpm) |
Accuracy | 97.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") |