View Pit Stop page for race #1 by _asim_ — Ghost race
View profile for Asim (_asim_)
| Official speed | 53.33 wpm (34.65 seconds elapsed during race) |
|---|---|
| Race Start | November 22, 2020 4:10:16am UTC |
| Race Finish | November 22, 2020 4:10:51am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 98.0% |
| Points | 18.67 |
| 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") |