View Pit Stop page for race #4 by blendyz — Ghost race
View profile for Evan (blendyz)
| Official speed | 46.00 wpm (40.17 seconds elapsed during race) |
|---|---|
| Race Start | December 11, 2019 3:05:56am UTC |
| Race Finish | December 11, 2019 3:06:36am UTC |
| Outcome | No win (2 of 2) |
| Opponents |
1. mmmooore (64.30 wpm) |
| Accuracy | 94.0% |
| Points | 16.10 |
| 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") |