View Pit Stop page for race #5 by domfabry — Ghost race
View profile for wes (domfabry)
Official speed | 56.73 wpm (32.58 seconds elapsed during race) |
---|---|
Race Start | June 16, 2023 10:33:52pm UTC |
Race Finish | June 16, 2023 10:34:24pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.0% |
Points | 19.86 |
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") |