View Pit Stop page for race #1 by setiadialvin — Ghost race
View profile for Alvin (setiadialvin)
Official speed | 31.62 wpm (58.44 seconds elapsed during race) |
---|---|
Race Start | December 23, 2012 6:10:39pm UTC |
Race Finish | December 23, 2012 6:11:37pm UTC |
Outcome | Win (1 of 2) |
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") |