View Pit Stop page for race #4 by akiki — Ghost race
View profile for akiki (akiki)
Official speed | 55.77 wpm (33.14 seconds elapsed during race) |
---|---|
Race Start | January 30, 2011 9:42:25am UTC |
Race Finish | January 30, 2011 9:42:58am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. mikuhatsune (90.08 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") |