View Pit Stop page for race #12 by repmal — Ghost race
View profile for yayeet (repmal)
Official speed | 55.82 wpm (33.11 seconds elapsed during race) |
---|---|
Race Start | November 19, 2018 10:03:55am UTC |
Race Finish | November 19, 2018 10:04:28am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 19.54 |
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") |