View Pit Stop page for race #8 by geonjr — Ghost race
Official speed | 44.09 wpm (41.91 seconds elapsed during race) |
---|---|
Race Start | March 18, 2011 11:41:54pm UTC |
Race Finish | March 18, 2011 11:42:36pm 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") |