View Pit Stop page for race #1 by waldoibarra — Ghost race
View profile for Waldo (waldoibarra)
| Official speed | 45.70 wpm (40.44 seconds elapsed during race) |
|---|---|
| Race Start | May 3, 2019 10:54:27pm UTC |
| Race Finish | May 3, 2019 10:55:08pm UTC |
| Outcome | No win (3 of 4) |
| Accuracy | 93.0% |
| Points | 15.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") |