View Pit Stop page for race #21 by userzin — Ghost race
View profile for Userzin (userzin)
| Official speed | 73.28 wpm (25.22 seconds elapsed during race) |
|---|---|
| Race Start | October 19, 2021 3:04:46pm UTC |
| Race Finish | October 19, 2021 3:05:11pm UTC |
| Outcome | Win (1 of 4) |
| Accuracy | 97.0% |
| Points | 25.65 |
| 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") |