View Pit Stop page for race #2 by batprem — Ghost race
View profile for Prem (batprem)
Official speed | 33.54 wpm (55.10 seconds elapsed during race) |
---|---|
Race Start | June 22, 2020 10:19:40am UTC |
Race Finish | June 22, 2020 10:20:35am UTC |
Outcome | No win (2 of 3) |
Accuracy | 90.0% |
Points | 11.74 |
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") |