View Pit Stop page for race #2 by perplexes — Ghost race
View profile for Colin (perplexes)
Official speed | 33.74 wpm (54.77 seconds elapsed during race) |
---|---|
Race Start | July 16, 2010 11:10:11pm UTC |
Race Finish | July 16, 2010 11:11:06pm UTC |
Outcome | No win (1 of 1) |
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") |