View Pit Stop page for race #235 by chopninjabob — Ghost race
View profile for Insta: Thomas.Rowland (chopninjabob)
| Official speed | 42.75 wpm (43.23 seconds elapsed during race) |
|---|---|
| Race Start | July 26, 2011 9:11:24pm UTC |
| Race Finish | July 26, 2011 9:12:07pm UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 85.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") |