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

Race #31

View Pit Stop page for race #31 by lucageorgeGhost race

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

Official speed 75.36 wpm (24.52 seconds elapsed during race)
Race Start April 13, 2016 3:57:35pm UTC
Race Finish April 13, 2016 3:58:00pm UTC
Outcome Win (1 of 2)
Opponents 2. knightsofni (56.42 wpm)
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")