View Pit Stop page for race #2 by frostyinfinitum — Ghost race
View profile for FrostyInfinitum (frostyinfinitum)
Official speed | 38.21 wpm (48.36 seconds elapsed during race) |
---|---|
Race Start | August 10, 2023 2:45:17am UTC |
Race Finish | August 10, 2023 2:46:05am UTC |
Outcome | No win (3 of 4) |
Opponents |
1. ghrey303 (63.62 wpm) 4. bluuefuzzy (30.86 wpm) |
Accuracy | 94.0% |
Points | 13.37 |
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") |