View Pit Stop page for race #1 by qwertydude6 — Ghost race
View profile for THANK YOU (qwertydude6)
Official speed | 28.87 wpm (64.01 seconds elapsed during race) |
---|---|
Race Start | May 15, 2011 2:55:38pm UTC |
Race Finish | May 15, 2011 2:56:42pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 91.0% |
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") |