View Pit Stop page for race #3 by ragilr_ — Ghost race
View profile for Ragil (ragilr_)
Official speed | 27.39 wpm (67.47 seconds elapsed during race) |
---|---|
Race Start | March 26, 2018 5:23:46pm UTC |
Race Finish | March 26, 2018 5:24:53pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 9.59 |
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") |