View Pit Stop page for race #31 by oh_yeah_go — Ghost race
View profile for kostis (oh_yeah_go)
Official speed | 45.52 wpm (40.60 seconds elapsed during race) |
---|---|
Race Start | January 24, 2022 5:05:24pm UTC |
Race Finish | January 24, 2022 5:06:05pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 15.93 |
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") |