View Pit Stop page for race #14 by causenetsofv — Ghost race
View profile for da (causenetsofv)
Official speed | 58.24 wpm (31.73 seconds elapsed during race) |
---|---|
Race Start | December 5, 2020 1:08:28pm UTC |
Race Finish | December 5, 2020 1:09:00pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 20.38 |
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") |