View Pit Stop page for race #6 by defused — Ghost race
View profile for James (defused)
Official speed | 60.38 wpm (30.61 seconds elapsed during race) |
---|---|
Race Start | February 1, 2011 3:30:43am UTC |
Race Finish | February 1, 2011 3:31:13am UTC |
Outcome | Win (1 of 2) |
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") |