View Pit Stop page for race #30 by hack89 — Ghost race
View profile for hack89 (hack89)
Official speed | 41.16 wpm (44.90 seconds elapsed during race) |
---|---|
Race Start | May 10, 2022 8:19:18pm UTC |
Race Finish | May 10, 2022 8:20:03pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 14.40 |
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") |