Alex (alexey0)

Race #29

View Pit Stop page for race #29 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 32.03 wpm (57.70 seconds elapsed during race)
Race Start September 20, 2014 6:15:20pm UTC
Race Finish September 20, 2014 6:16:17pm UTC
Outcome No win (2 of 3)
Accuracy 99.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")