View Pit Stop page for race #14 by tsampley — Ghost race
View profile for Taush (tsampley)
Official speed | 60.62 wpm (30.49 seconds elapsed during race) |
---|---|
Race Start | June 25, 2021 4:51:52pm UTC |
Race Finish | June 25, 2021 4:52:22pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 21.22 |
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") |