View Pit Stop page for race #7 by abaitam — Ghost race
View profile for Ali (abaitam)
Official speed | 51.43 wpm (35.93 seconds elapsed during race) |
---|---|
Race Start | August 20, 2013 8:14:18pm UTC |
Race Finish | August 20, 2013 8:14:54pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.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") |