View Pit Stop page for race #1 by batprem — Ghost race
View profile for Prem (batprem)
Official speed | 33.95 wpm (54.43 seconds elapsed during race) |
---|---|
Race Start | June 22, 2020 10:18:18am UTC |
Race Finish | June 22, 2020 10:19:13am UTC |
Outcome | No win (2 of 3) |
Accuracy | 94.0% |
Points | 11.88 |
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") |