View Pit Stop page for race #14 by jorginholuiz — Ghost race
View profile for Jorge Luiz (jorginholuiz)
Official speed | 52.51 wpm (35.19 seconds elapsed during race) |
---|---|
Race Start | February 23, 2015 12:00:20pm UTC |
Race Finish | February 23, 2015 12:00:55pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.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") |