View Pit Stop page for race #1 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 85.72 wpm (21.56 seconds elapsed during race) |
---|---|
Race Start | February 16, 2019 5:41:11am UTC |
Race Finish | February 16, 2019 5:41:32am UTC |
Outcome | No win (3 of 5) |
Opponents |
1. sidd_ (116.25 wpm) 2. deroche1 (97.62 wpm) 4. spondulix (66.03 wpm) 5. actuallynonquitforlife (57.44 wpm) |
Accuracy | 97.0% |
Points | 30.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") |