View Pit Stop page for race #6 by zachleachtx — Ghost race
View profile for zach (zachleachtx)
| Official speed | 62.17 wpm (29.72 seconds elapsed during race) |
|---|---|
| Race Start | September 20, 2020 4:46:40pm UTC |
| Race Finish | September 20, 2020 4:47:10pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 94.0% |
| Points | 21.76 |
| 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") |