View Pit Stop page for race #9 by imsoawesomexd — Ghost race
View profile for TR★→TypistxD← (imsoawesomexd)
Official speed | 28.53 wpm (64.77 seconds elapsed during race) |
---|---|
Race Start | June 1, 2011 1:30:52am UTC |
Race Finish | June 1, 2011 1:31:57am UTC |
Outcome | No win (3 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") |