View Pit Stop page for race #1 by weeooweeoo — Ghost race
View profile for simen (weeooweeoo)
Official speed | 36.36 wpm (50.83 seconds elapsed during race) |
---|---|
Race Start | January 25, 2018 3:55:13pm UTC |
Race Finish | January 25, 2018 3:56:03pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 12.73 |
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") |