View Pit Stop page for race #1 by flowsosick — Ghost race
View profile for flow (flowsosick)
Official speed | 28.29 wpm (65.32 seconds elapsed during race) |
---|---|
Race Start | August 2, 2023 5:09:50pm UTC |
Race Finish | August 2, 2023 5:10:55pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 92.0% |
Points | 9.90 |
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") |