View Pit Stop page for race #1 by fur3x — Ghost race
View profile for Fredrik (fur3x)
Official speed | 42.34 wpm (43.65 seconds elapsed during race) |
---|---|
Race Start | December 28, 2012 10:05:19pm UTC |
Race Finish | December 28, 2012 10:06:03pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. selphy (68.89 wpm) |
Accuracy | 82.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") |