View Pit Stop page for race #3 by not_pranix — Ghost race
View profile for Pranix (not_pranix)
Official speed | 28.98 wpm (63.77 seconds elapsed during race) |
---|---|
Race Start | June 24, 2023 2:31:53pm UTC |
Race Finish | June 24, 2023 2:32:57pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 10.14 |
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") |