View Pit Stop page for race #7 by r4nd4ll — Ghost race
View profile for Ravenzlayer (r4nd4ll)
Official speed | 47.80 wpm (38.66 seconds elapsed during race) |
---|---|
Race Start | May 19, 2016 4:56:52pm UTC |
Race Finish | May 19, 2016 4:57:30pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.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") |