View Pit Stop page for race #3 by shorent — Ghost race
View profile for Matthew (shorent)
Official speed | 17.60 wpm (105.00 seconds elapsed during race) |
---|---|
Race Start | November 4, 2022 1:47:18pm UTC |
Race Finish | November 4, 2022 1:49:03pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 89.0% |
Points | 6.16 |
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") |