View Pit Stop page for race #27 by rektless — Ghost race
View profile for -ˏˋ 🌟 ˎˊ- (rektless)
Official speed | 56.15 wpm (32.91 seconds elapsed during race) |
---|---|
Race Start | March 29, 2023 1:17:21pm UTC |
Race Finish | March 29, 2023 1:17:54pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 19.65 |
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") |