View Pit Stop page for race #1 by clouhhd_ — Ghost race
Official speed | 25.71 wpm (71.88 seconds elapsed during race) |
---|---|
Race Start | January 13, 2019 10:39:48pm UTC |
Race Finish | January 13, 2019 10:41:00pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 92.0% |
Points | 9.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") |