View Pit Stop page for race #2 by lechjeda — Ghost race
View profile for Jessica (lechjeda)
Official speed | 47.90 wpm (38.58 seconds elapsed during race) |
---|---|
Race Start | August 21, 2013 10:27:07am UTC |
Race Finish | August 21, 2013 10:27:45am UTC |
Outcome | Win (1 of 3) |
Opponents |
3. cyberkasumi (45.02 wpm) |
Accuracy | 90.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") |