Ghast (16ixremizov08)

Race #7

View Pit Stop page for race #7 by 16ixremizov08Ghost race

View profile for Ghast (16ixremizov08)

Official speed 24.09 wpm (76.71 seconds elapsed during race)
Race Start February 10, 2012 3:57:24pm UTC
Race Finish February 10, 2012 3:58:41pm UTC
Outcome No win (3 of 3)
Accuracy 92.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")