View Pit Stop page for race #2 by xoooox — Ghost race
View profile for Teixeira (xoooox)
Official speed | 36.56 wpm (50.55 seconds elapsed during race) |
---|---|
Race Start | October 29, 2011 3:33:26pm UTC |
Race Finish | October 29, 2011 3:34:16pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. dudiellon (79.46 wpm) |
Accuracy | 88.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") |