View Pit Stop page for race #19 by leonzalion — Ghost race
View profile for leon (leonzalion)
Official speed | 104.68 wpm (17.65 seconds elapsed during race) |
---|---|
Race Start | May 25, 2021 7:41:00pm UTC |
Race Finish | May 25, 2021 7:41:17pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 36.64 |
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") |