View Pit Stop page for race #1 by hmmmnotokay — Ghost race
View profile for arif (hmmmnotokay)
Official speed | 35.43 wpm (52.16 seconds elapsed during race) |
---|---|
Race Start | August 17, 2022 1:17:18pm UTC |
Race Finish | August 17, 2022 1:18:10pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 12.40 |
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") |