Blitz (athul)

Race #20

View Pit Stop page for race #20 by athulGhost race

View profile for Blitz (athul)

Official speed 55.17 wpm (33.50 seconds elapsed during race)
Race Start July 1, 2013 4:49:02pm UTC
Race Finish July 1, 2013 4:49:35pm UTC
Outcome No win (2 of 2)
Opponents 1. majstor_cipa (56.57 wpm)
Accuracy 90.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")