View Pit Stop page for race #2 by jeremy0d — Ghost race
View profile for Mahler9 (jeremy0d)
Official speed | 48.85 wpm (37.83 seconds elapsed during race) |
---|---|
Race Start | May 30, 2017 1:56:33pm UTC |
Race Finish | May 30, 2017 1:57:11pm UTC |
Outcome | Win (1 of 2) |
Accuracy | 98.0% |
Points | 0.00 |
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") |