View Pit Stop page for race #1 by dialgag1 — Ghost race
View profile for dialgag1 (dialgag1)
Official speed | 52.49 wpm (35.21 seconds elapsed during race) |
---|---|
Race Start | March 24, 2017 1:26:28am UTC |
Race Finish | March 24, 2017 1:27:03am UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.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") |