ᗜ Plover Steno (stedno)

Race #1

View Pit Stop page for race #1 by stednoGhost race

View profile for ᗜ Plover Steno (stedno)

Official speed 31.83 wpm (58.06 seconds elapsed during race)
Race Start April 26, 2016 5:11:51pm UTC
Race Finish April 26, 2016 5:12:49pm UTC
Outcome No win (3 of 3)
Accuracy 60.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")