View Pit Stop page for race #1 by enriquecollin — Ghost race
View profile for RIP Byron (enriquecollin)
Official speed | 60.39 wpm (30.60 seconds elapsed during race) |
---|---|
Race Start | August 9, 2017 2:18:26am UTC |
Race Finish | August 9, 2017 2:18:57am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 21.14 |
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") |