View Pit Stop page for race #37 by tpenguinltg — Ghost race
View profile for tPenguinLTG (tpenguinltg)
Official speed | 62.77 wpm (29.44 seconds elapsed during race) |
---|---|
Race Start | June 12, 2015 12:13:43am UTC |
Race Finish | June 12, 2015 12:14:12am UTC |
Outcome | No win (2 of 2) |
Accuracy | 87.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") |