View Pit Stop page for race #1 by infinitusone — Ghost race
View profile for infinitus (infinitusone)
Official speed | 25.01 wpm (73.89 seconds elapsed during race) |
---|---|
Race Start | May 31, 2011 8:05:30pm UTC |
Race Finish | May 31, 2011 8:06:44pm UTC |
Outcome | No win (4 of 4) |
Opponents |
1. lazyeye (40.86 wpm) |
Accuracy | 96.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") |