View Pit Stop page for race #2 by hayk — Ghost race
Official speed | 56.08 wpm (32.95 seconds elapsed during race) |
---|---|
Race Start | April 27, 2011 6:30:28pm UTC |
Race Finish | April 27, 2011 6:31:01pm UTC |
Outcome | No win (2 of 3) |
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") |