View Pit Stop page for race #1 by jeramy_with_an_a — Ghost race
View profile for Jeramy (jeramy_with_an_a)
Official speed | 33.08 wpm (55.86 seconds elapsed during race) |
---|---|
Race Start | March 10, 2022 2:08:15am UTC |
Race Finish | March 10, 2022 2:09:11am UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.0% |
Points | 11.58 |
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") |