View Pit Stop page for race #2 by ronualdo — Ghost race
View profile for Ronualdo Augusto (ronualdo)
| Official speed | 32.51 wpm (56.84 seconds elapsed during race) |
|---|---|
| Race Start | December 19, 2012 6:37:01pm UTC |
| Race Finish | December 19, 2012 6:37:58pm UTC |
| Outcome | No win (2 of 4) |
| Accuracy | 89.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") |