View Pit Stop page for race #4 by mirawa — Ghost race
View profile for Renan (mirawa)
Official speed | 49.40 wpm (37.41 seconds elapsed during race) |
---|---|
Race Start | August 18, 2011 12:20:53am UTC |
Race Finish | August 18, 2011 12:21:30am UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.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") |