View Pit Stop page for race #26 by rondino2 — Ghost race
View profile for Rondino (rondino2)
Official speed | 44.15 wpm (41.86 seconds elapsed during race) |
---|---|
Race Start | April 3, 2016 9:28:37pm UTC |
Race Finish | April 3, 2016 9:29:19pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.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") |