View Pit Stop page for race #2 by duckyluuk — Ghost race
View profile for Lukas (duckyluuk)
Official speed | 55.65 wpm (33.21 seconds elapsed during race) |
---|---|
Race Start | December 12, 2022 10:49:04am UTC |
Race Finish | December 12, 2022 10:49:37am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 19.48 |
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") |