View Pit Stop page for race #18 by saurabhjain — Ghost race
View profile for Saurabh (saurabhjain)
Official speed | 29.18 wpm (63.33 seconds elapsed during race) |
---|---|
Race Start | February 7, 2011 3:49:35pm UTC |
Race Finish | February 7, 2011 3:50:39pm UTC |
Outcome | No win (2 of 2) |
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") |