View Pit Stop page for race #100 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 93.20 wpm (19.83 seconds elapsed during race) |
---|---|
Race Start | August 12, 2019 4:39:39pm UTC |
Race Finish | August 12, 2019 4:39:59pm UTC |
Outcome | Win (1 of 3) |
Opponents |
2. spondulix (90.11 wpm) |
Accuracy | 97.0% |
Points | 32.62 |
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") |