View Pit Stop page for race #1 by honnyhonny — Ghost race
View profile for Facebook me @ (honnyhonny)
Official speed | 35.52 wpm (52.03 seconds elapsed during race) |
---|---|
Race Start | May 8, 2018 11:11:52pm UTC |
Race Finish | May 8, 2018 11:12:44pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 97.0% |
Points | 12.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") |