[AhK] Panizio (Trampo) (juniorbadpnz)

Race #30

View Pit Stop page for race #30 by juniorbadpnzGhost race

View profile for [AhK] Panizio (Trampo) (juniorbadpnz)

Official speed 53.17 wpm (34.76 seconds elapsed during race)
Race Start March 18, 2015 4:44:56am UTC
Race Finish March 18, 2015 4:45:31am UTC
Outcome Win (1 of 3)
Accuracy 94.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")