View Pit Stop page for race #1 by shadron — Ghost race
View profile for Jimi (shadron)
| Official speed | 48.22 wpm (38.32 seconds elapsed during race) |
|---|---|
| Race Start | November 25, 2020 4:11:23pm UTC |
| Race Finish | November 25, 2020 4:12:01pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.0% |
| Points | 16.88 |
| 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") |