View Pit Stop page for race #6 by imslow10 — Ghost race
View profile for twitch.tv/CGreyIce (imslow10)
Official speed | 63.11 wpm (29.28 seconds elapsed during race) |
---|---|
Race Start | July 15, 2025 3:02:08pm UTC |
Race Finish | July 15, 2025 3:02:38pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 96.0% |
Points | 22.09 |
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") |