View Pit Stop page for race #64 by knight_oikos — Ghost race
View profile for Knight_Oikos (knight_oikos)
Official speed | 73.52 wpm (25.14 seconds elapsed during race) |
---|---|
Race Start | April 6, 2022 7:13:30am UTC |
Race Finish | April 6, 2022 7:13:55am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 25.73 |
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") |