View Pit Stop page for race #2 by someghost — Ghost race
View profile for someghost (someghost)
Official speed | 60.96 wpm (30.32 seconds elapsed during race) |
---|---|
Race Start | March 7, 2014 12:46:13pm UTC |
Race Finish | March 7, 2014 12:46:43pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. silverrocker (70.48 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") |