View Pit Stop page for race #1 by wilfredb — Ghost race
View profile for Wilfred (wilfredb)
| Official speed | 57.54 wpm (32.12 seconds elapsed during race) |
|---|---|
| Race Start | September 1, 2023 8:35:25pm UTC |
| Race Finish | September 1, 2023 8:35:57pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 98.0% |
| Points | 20.14 |
| 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") |