^_^ (rainbowdashc)

Race #11

View Pit Stop page for race #11 by rainbowdashcGhost race

View profile for ^_^ (rainbowdashc)

Official speed 83.43 wpm (22.15 seconds elapsed during race)
Race Start March 10, 2014 9:15:20pm UTC
Race Finish March 10, 2014 9:15:42pm UTC
Outcome Win (1 of 3)
Accuracy 91.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")