View Pit Stop page for race #17 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 56.87 wpm (32.50 seconds elapsed during race) |
---|---|
Race Start | April 8, 2025 7:57:15pm UTC |
Race Finish | April 8, 2025 7:57:48pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 19.90 |
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") |