View Pit Stop page for race #4 by elienai2 — Ghost race
View profile for [MG] Elienai Governador Valadares (elienai2)
Official speed | 31.46 wpm (58.74 seconds elapsed during race) |
---|---|
Race Start | April 14, 2011 4:50:28am UTC |
Race Finish | April 14, 2011 4:51:27am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. dudiellon (50.88 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") |