View Pit Stop page for race #1 by daycolor — Ghost race
View profile for Alon (daycolor)
Official speed | 63.81 wpm (28.96 seconds elapsed during race) |
---|---|
Race Start | October 17, 2019 4:32:46pm UTC |
Race Finish | October 17, 2019 4:33:15pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 22.33 |
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") |