View Pit Stop page for race #3 by integritytester — Ghost race
View profile for Carter (integritytester)
Official speed | 27.32 wpm (67.64 seconds elapsed during race) |
---|---|
Race Start | September 22, 2017 10:34:55pm UTC |
Race Finish | September 22, 2017 10:36:03pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 95.0% |
Points | 9.56 |
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") |