View Pit Stop page for race #26 by flsf — Ghost race
View profile for icebox (flsf)
Official speed | 70.81 wpm (26.10 seconds elapsed during race) |
---|---|
Race Start | April 29, 2019 2:26:46am UTC |
Race Finish | April 29, 2019 2:27:12am UTC |
Outcome | No win (3 of 3) |
Accuracy | 98.0% |
Points | 24.78 |
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") |