View Pit Stop page for race #2 by honnyhonny — Ghost race
View profile for Facebook me @ (honnyhonny)
Official speed | 37.49 wpm (49.29 seconds elapsed during race) |
---|---|
Race Start | May 8, 2018 11:14:36pm UTC |
Race Finish | May 8, 2018 11:15:26pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 13.12 |
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") |