View Pit Stop page for race #20 by sansyaku — Ghost race
View profile for sintyaku (sansyaku)
Official speed | 60.15 wpm (30.72 seconds elapsed during race) |
---|---|
Race Start | May 17, 2011 8:02:30am UTC |
Race Finish | May 17, 2011 8:03:01am UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.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") |