Victor (flipoffer13)

Race #119

View Pit Stop page for race #119 by flipoffer13Ghost race

View profile for Victor (flipoffer13)

Official speed 50.93 wpm (36.29 seconds elapsed during race)
Race Start June 10, 2013 6:43:12pm UTC
Race Finish June 10, 2013 6:43:48pm UTC
Outcome Win (1 of 3)
Accuracy 97.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")