View Pit Stop page for race #2 by kvalcanti — Ghost race
View profile for Ricardo (kvalcanti)
Official speed | 38.04 wpm (48.58 seconds elapsed during race) |
---|---|
Race Start | December 19, 2012 6:50:54pm UTC |
Race Finish | December 19, 2012 6:51:43pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. ronualdo (39.62 wpm) |
Accuracy | 85.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") |