✔️▄◘🚀!new_luca@yahoo.com on Colemak | (lucageorge)

Race #11

View Pit Stop page for race #11 by lucageorgeGhost race

View profile for ✔️▄◘🚀!new_luca@yahoo.com on Colemak | (lucageorge)

Official speed 57.64 wpm (32.06 seconds elapsed during race)
Race Start November 10, 2011 8:37:34pm UTC
Race Finish November 10, 2011 8:38:06pm UTC
Outcome No win (1 of 1)
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")