View Pit Stop page for race #18 by badomiso — Ghost race
View profile for badomiso (badomiso)
Official speed | 58.36 wpm (31.67 seconds elapsed during race) |
---|---|
Race Start | January 30, 2011 4:06:01pm UTC |
Race Finish | January 30, 2011 4:06:32pm UTC |
Outcome | No win (4 of 6) |
Opponents |
1. mikuhatsune (83.06 wpm) 2. atenza (66.22 wpm) 3. 2getter (61.02 wpm) 5. danny45 (57.37 wpm) 6. guda (55.68 wpm) |
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") |