View Pit Stop page for race #1 by shashashane — Ghost race
View profile for WAKing (shashashane)
Official speed | 32.56 wpm (56.76 seconds elapsed during race) |
---|---|
Race Start | November 6, 2022 12:19:32pm UTC |
Race Finish | November 6, 2022 12:20:29pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 11.40 |
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") |