View Pit Stop page for race #8 by chakk — Ghost race
View profile for im liquid smooth (chakk)
Official speed | 112.16 wpm (16.48 seconds elapsed during race) |
---|---|
Race Start | October 31, 2018 8:06:52pm UTC |
Race Finish | October 31, 2018 8:07:08pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 99.0% |
Points | 39.26 |
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") |