​ (vonunov)

Race #7

View Pit Stop page for race #7 by vonunovGhost race

View profile for ​ (vonunov)

Official speed 74.66 wpm (24.75 seconds elapsed during race)
Race Start June 25, 2014 2:29:23am UTC
Race Finish June 25, 2014 2:29:47am UTC
Outcome Win (1 of 3)
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")