Race Updates Discord About Merch
Home Profile History Competitions Texts Upgrade

typeracer

Pit Stop
Racer Leonardo (leockard)
Race Number 2
Date Fri, 1 Mar 2013 22:36:54
Universe code
Speed 58 WPM Try to beat?
Accuracy 94.5%
Rank 2nd place (out of 5)
Opponents fjra (3rd place) rsync (5th place)

Text typed:

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")
— (software) by Fredrik Lundh (see stats)