Ghast (16ixremizov08)

Race #3

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

View profile for Ghast (16ixremizov08)

Official speed 23.43 wpm (78.87 seconds elapsed during race)
Race Start February 9, 2012 3:39:50pm UTC
Race Finish February 9, 2012 3:41:09pm UTC
Outcome No win (3 of 3)
Accuracy 94.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")