View Pit Stop page for race #1 by tobiasbales — Ghost race
View profile for Tobias (tobiasbales)
Official speed | 40.17 wpm (46.00 seconds elapsed during race) |
---|---|
Race Start | March 8, 2018 8:31:28am UTC |
Race Finish | March 8, 2018 8:32:14am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 14.06 |
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") |