View Pit Stop page for race #5 by elienai2 — Ghost race
View profile for [MG] Elienai Governador Valadares (elienai2)
Official speed | 25.86 wpm (71.46 seconds elapsed during race) |
---|---|
Race Start | April 14, 2011 4:58:32am UTC |
Race Finish | April 14, 2011 4:59:43am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. dudiellon (54.62 wpm) |
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") |