View Pit Stop page for race #1 by catdiscducks — Ghost race
View profile for sara (catdiscducks)
Official speed | 31.93 wpm (57.88 seconds elapsed during race) |
---|---|
Race Start | March 28, 2017 8:39:34pm UTC |
Race Finish | March 28, 2017 8:40:32pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. infinitypasta (48.51 wpm) |
Accuracy | 91.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") |