View Pit Stop page for race #1 by machineuno — Ghost race
View profile for machineuno (machineuno)
Official speed | 40.89 wpm (45.19 seconds elapsed during race) |
---|---|
Race Start | June 28, 2023 11:54:27am UTC |
Race Finish | June 28, 2023 11:55:13am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 14.31 |
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") |