View Pit Stop page for race #1 by officialmaj — Ghost race
View profile for Semaj (officialmaj)
Official speed | 60.16 wpm (30.72 seconds elapsed during race) |
---|---|
Race Start | May 25, 2018 8:12:56pm UTC |
Race Finish | May 25, 2018 8:13:27pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 21.06 |
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") |