View Pit Stop page for race #1 by divergingfrompintos — Ghost race
View profile for jo (divergingfrompintos)
Official speed | 48.43 wpm (38.16 seconds elapsed during race) |
---|---|
Race Start | March 30, 2013 2:57:37pm UTC |
Race Finish | March 30, 2013 2:58:15pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.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") |