View Pit Stop page for race #1 by henrikasj — Ghost race
View profile for Henrikas (henrikasj)
Official speed | 56.60 wpm (32.65 seconds elapsed during race) |
---|---|
Race Start | November 19, 2016 11:53:48am UTC |
Race Finish | November 19, 2016 11:54:21am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 0.00 |
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") |