View Pit Stop page for race #25 by teslateslatesla — Ghost race
View profile for sk (teslateslatesla)
Official speed | 42.44 wpm (43.54 seconds elapsed during race) |
---|---|
Race Start | September 6, 2021 7:26:53am UTC |
Race Finish | September 6, 2021 7:27:37am UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 14.85 |
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") |