View Pit Stop page for race #9 by gamblr — Ghost race
View profile for Gambler (gamblr)
Official speed | 38.52 wpm (47.98 seconds elapsed during race) |
---|---|
Race Start | June 16, 2023 4:54:50pm UTC |
Race Finish | June 16, 2023 4:55:38pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 13.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") |