View Pit Stop page for race #9 by zeloceb — Ghost race
View profile for bruh (zeloceb)
Official speed | 33.36 wpm (55.40 seconds elapsed during race) |
---|---|
Race Start | January 24, 2022 3:30:36pm UTC |
Race Finish | January 24, 2022 3:31:31pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 11.67 |
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") |