View Pit Stop page for race #4 by slow_joe — Ghost race
View profile for Slow Joe (slow_joe)
Official speed | 26.49 wpm (69.76 seconds elapsed during race) |
---|---|
Race Start | February 6, 2011 2:48:58am UTC |
Race Finish | February 6, 2011 2:50:07am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. tedm (40.27 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") |