ꜛ ᵘᵄᵎᵘᵒᵊᵄ ꜜ (aeynn)

Race #4

View Pit Stop page for race #4 by aeynnGhost race

View profile for ꜛ ᵘᵄᵎᵘᵒᵊᵄ ꜜ (aeynn)

Official speed 67.04 wpm (27.57 seconds elapsed during race)
Race Start February 16, 2011 9:17:29am UTC
Race Finish February 16, 2011 9:17:57am UTC
Outcome No win (1 of 1)
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")