Alex (alexey0)

Race #61

View Pit Stop page for race #61 by alexey0Ghost race

View profile for Alex (alexey0)

Official speed 28.73 wpm (64.32 seconds elapsed during race)
Race Start February 22, 2015 6:36:14pm UTC
Race Finish February 22, 2015 6:37:18pm UTC
Outcome No win (3 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")