View Pit Stop page for race #2 by chucklesthebeard — Ghost race
View profile for Andrew (chucklesthebeard)
Official speed | 47.79 wpm (38.67 seconds elapsed during race) |
---|---|
Race Start | December 30, 2016 7:43:48pm UTC |
Race Finish | December 30, 2016 7:44:27pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.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") |