View Pit Stop page for race #1 by arnargisla — Ghost race
View profile for arnargisla (arnargisla)
| Official speed | 48.34 wpm (38.23 seconds elapsed during race) |
|---|---|
| Race Start | March 14, 2019 11:42:57pm UTC |
| Race Finish | March 14, 2019 11:43:35pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 97.0% |
| Points | 16.92 |
| 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") |