logan (creed98)

Race #11

View Pit Stop page for race #11 by creed98Ghost race

View profile for logan (creed98)

Official speed 14.90 wpm (124.03 seconds elapsed during race)
Race Start February 13, 2013 8:52:48pm UTC
Race Finish February 13, 2013 8:54:52pm UTC
Outcome No win (3 of 3)
Accuracy 88.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")