View Pit Stop page for race #1 by ancientmethuzelah — Ghost race
View profile for Henry (ancientmethuzelah)
Official speed | 36.43 wpm (50.73 seconds elapsed during race) |
---|---|
Race Start | November 28, 2017 12:58:42am UTC |
Race Finish | November 28, 2017 12:59:33am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. type_is_lyfe (34.41 wpm) |
Accuracy | 95.0% |
Points | 12.75 |
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") |