View Pit Stop page for race #3 by razgrizaces — Ghost race
View profile for Razgrizaces (razgrizaces)
Official speed | 62.25 wpm (29.69 seconds elapsed during race) |
---|---|
Race Start | December 4, 2019 7:49:56pm UTC |
Race Finish | December 4, 2019 7:50:25pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 21.79 |
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") |