View Pit Stop page for race #9 by winasforcepta — Ghost race
View profile for Dewangga (winasforcepta)
Official speed | 33.13 wpm (55.78 seconds elapsed during race) |
---|---|
Race Start | October 1, 2013 7:25:24pm UTC |
Race Finish | October 1, 2013 7:26:20pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. gonryun (35.47 wpm) |
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") |