View Pit Stop page for race #1 by krewe11a — Ghost race
View profile for Elvis (krewe11a)
Official speed | 44.46 wpm (41.57 seconds elapsed during race) |
---|---|
Race Start | August 22, 2015 1:24:27pm UTC |
Race Finish | August 22, 2015 1:25:09pm UTC |
Outcome | No win (2 of 4) |
Opponents |
1. reckful (83.03 wpm) |
Accuracy | 87.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") |