tPenguinLTG (tpenguinltg)

Race #56

View Pit Stop page for race #56 by tpenguinltgGhost race

View profile for tPenguinLTG (tpenguinltg)

Official speed 68.58 wpm (26.95 seconds elapsed during race)
Race Start October 7, 2016 4:25:13am UTC
Race Finish October 7, 2016 4:25:40am UTC
Outcome Win (1 of 3)
Opponents 3. dreadnoughtsix (37.82 wpm)
Accuracy 92.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")