View Pit Stop page for race #2 by dshawn — Ghost race
View profile for Shawn (dshawn)
| Official speed | 65.68 wpm (28.14 seconds elapsed during race) |
|---|---|
| Race Start | September 6, 2018 4:14:24am UTC |
| Race Finish | September 6, 2018 4:14:53am UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 98.0% |
| Points | 22.99 |
| 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") |