View Pit Stop page for race #7 by clueless_af — Ghost race
View profile for Sne (clueless_af)
Official speed | 25.26 wpm (73.16 seconds elapsed during race) |
---|---|
Race Start | June 13, 2023 10:02:32am UTC |
Race Finish | June 13, 2023 10:03:45am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 8.84 |
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") |