View Pit Stop page for race #7 by saurabhjain — Ghost race
View profile for Saurabh (saurabhjain)
Official speed | 26.63 wpm (69.40 seconds elapsed during race) |
---|---|
Race Start | January 28, 2011 2:38:15pm UTC |
Race Finish | January 28, 2011 2:39:24pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. typist2 (25.85 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") |