View Pit Stop page for race #3 by pespidoge — Ghost race
View profile for lightning (pespidoge)
Official speed | 65.08 wpm (28.40 seconds elapsed during race) |
---|---|
Race Start | May 19, 2017 2:11:54pm UTC |
Race Finish | May 19, 2017 2:12:22pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. hentaiclockwise (93.39 wpm) 3. chirashi (50.58 wpm) |
Accuracy | 90.0% |
Points | 0.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") |