View Pit Stop page for race #8 by 16ixremizov08 — Ghost race
View profile for Ghast (16ixremizov08)
Official speed | 24.65 wpm (74.97 seconds elapsed during race) |
---|---|
Race Start | March 6, 2012 3:49:00pm UTC |
Race Finish | March 6, 2012 3:50:15pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.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") |