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

Race #24

View Pit Stop page for race #24 by lucageorgeGhost race

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

Official speed 81.44 wpm (22.69 seconds elapsed during race)
Race Start April 13, 2016 3:46:18pm UTC
Race Finish April 13, 2016 3:46:41pm UTC
Outcome Win (1 of 2)
Opponents 2. knightsofni (52.83 wpm)
Accuracy 99.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")