View Pit Stop page for race #25 by chakk — Ghost race
View profile for im liquid smooth (chakk)
Official speed | 101.76 wpm (18.16 seconds elapsed during race) |
---|---|
Race Start | November 23, 2018 10:00:49pm UTC |
Race Finish | November 23, 2018 10:01:08pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. 1a2a (106.95 wpm) 3. notapplicable (76.77 wpm) |
Accuracy | 99.0% |
Points | 35.61 |
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") |