View Pit Stop page for race #7 by drdilyor_ — Ghost race
View profile for dvorak the supreme (drdilyor_)
Official speed | 66.95 wpm (27.60 seconds elapsed during race) |
---|---|
Race Start | March 21, 2022 7:28:19pm UTC |
Race Finish | March 21, 2022 7:28:47pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 23.43 |
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") |