View Pit Stop page for race #2 by paynedeath — Ghost race
View profile for James (paynedeath)
Official speed | 24.31 wpm (76.02 seconds elapsed during race) |
---|---|
Race Start | March 2, 2017 8:27:51am UTC |
Race Finish | March 2, 2017 8:29:07am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. wati2151 (36.55 wpm) |
Accuracy | 81.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") |