Victor (flipoffer13)

Race #126

View Pit Stop page for race #126 by flipoffer13Ghost race

View profile for Victor (flipoffer13)

Official speed 49.22 wpm (37.55 seconds elapsed during race)
Race Start June 11, 2013 5:21:20pm UTC
Race Finish June 11, 2013 5:21:57pm UTC
Outcome Win (1 of 3)
Accuracy 96.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")