View Pit Stop page for race #1 by mikul — Ghost race
View profile for michael (mikul)
Official speed | 43.09 wpm (42.89 seconds elapsed during race) |
---|---|
Race Start | February 20, 2018 2:17:01pm UTC |
Race Finish | February 20, 2018 2:17:44pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 15.08 |
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") |