View Pit Stop page for race #4 by nmyo — Ghost race
Official speed | 61.52 wpm (30.04 seconds elapsed during race) |
---|---|
Race Start | January 8, 2018 8:57:26am UTC |
Race Finish | January 8, 2018 8:57:56am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 21.53 |
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") |