View Pit Stop page for race #1 by spicyrape — Ghost race
View profile for spicyrape (spicyrape)
Official speed | 49.35 wpm (37.45 seconds elapsed during race) |
---|---|
Race Start | April 9, 2017 3:33:59pm UTC |
Race Finish | April 9, 2017 3:34:37pm UTC |
Outcome | No win (2 of 3) |
Opponents |
1. jjustin2000 (67.90 wpm) |
Accuracy | 94.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") |