View Pit Stop page for race #6 by fightin_phils — Ghost race
View profile for PhilliesMagic (fightin_phils)
Official speed | 85.08 wpm (21.72 seconds elapsed during race) |
---|---|
Race Start | December 22, 2010 9:52:14pm UTC |
Race Finish | December 22, 2010 9:52:35pm UTC |
Outcome | Win (1 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") |