Alex (alexey0)

Race #10

View Pit Stop page for race #10 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 31.44 wpm (58.78 seconds elapsed during race)
Race Start September 9, 2014 1:54:33pm UTC
Race Finish September 9, 2014 1:55:31pm UTC
Outcome No win (2 of 3)
Accuracy 100.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")