View Pit Stop page for race #2 by serialkiller — Ghost race
View profile for Steve (serialkiller)
Official speed | 52.98 wpm (34.88 seconds elapsed during race) |
---|---|
Race Start | February 26, 2011 12:59:29am UTC |
Race Finish | February 26, 2011 1:00:04am UTC |
Outcome | Win (1 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") |