View Pit Stop page for race #1 by askiiart — Ghost race
View profile for your mother('s mother) (askiiart)
Official speed | 59.22 wpm (31.21 seconds elapsed during race) |
---|---|
Race Start | July 25, 2023 5:52:41pm UTC |
Race Finish | July 25, 2023 5:53:12pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 20.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") |