View Pit Stop page for race #2 by boxofpaints — Ghost race
View profile for E (boxofpaints)
Official speed | 33.48 wpm (55.20 seconds elapsed during race) |
---|---|
Race Start | December 7, 2020 1:32:00pm UTC |
Race Finish | December 7, 2020 1:32:55pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 11.72 |
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") |