View Pit Stop page for race #12 by akky89 — Ghost race
View profile for apoorv (akky89)
Official speed | 38.96 wpm (47.43 seconds elapsed during race) |
---|---|
Race Start | April 30, 2015 3:52:44am UTC |
Race Finish | April 30, 2015 3:53:32am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.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") |