View Pit Stop page for race #2 by shinypichu88 — Ghost race
View profile for shiny (shinypichu88)
Official speed | 31.68 wpm (58.33 seconds elapsed during race) |
---|---|
Race Start | March 28, 2015 11:23:16am UTC |
Race Finish | March 28, 2015 11:24:15am 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") |