Genaro (tamemister)

Race #356

View Pit Stop page for race #356 by tamemisterGhost race

View profile for Genaro (tamemister)

Official speed 64.63 wpm (28.59 seconds elapsed during race)
Race Start January 26, 2015 6:37:54am UTC
Race Finish January 26, 2015 6:38:22am 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")