View Pit Stop page for race #2 by shaansmwl77 — Ghost race
View profile for Sarthak (shaansmwl77)
| Official speed | 37.06 wpm (49.87 seconds elapsed during race) |
|---|---|
| Race Start | April 10, 2017 2:37:12pm UTC |
| Race Finish | April 10, 2017 2:38:02pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 86.0% |
| Points | 0.00 |
| 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") |