View Pit Stop page for race #2 by danteyokley — Ghost race
View profile for Dante (danteyokley)
Official speed | 28.78 wpm (64.21 seconds elapsed during race) |
---|---|
Race Start | December 23, 2015 7:39:23pm UTC |
Race Finish | December 23, 2015 7:40:27pm UTC |
Outcome | No win (2 of 2) |
Accuracy | 90.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") |