Johan (anderssonjohan)

Race #4

View Pit Stop page for race #4 by anderssonjohanGhost race

View profile for Johan (anderssonjohan)

Official speed 34.38 wpm (53.75 seconds elapsed during race)
Race Start January 7, 2014 3:52:02pm UTC
Race Finish January 7, 2014 3:52:56pm UTC
Outcome No win (3 of 5)
Opponents 1. zaz_ (43.86 wpm)
Accuracy 84.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")