Race Updates Discord About Merch
Home Profile History Competitions Texts Upgrade

typeracer

Pit Stop
Racer Darshan (darshankapashi)
Race Number 1
Date Wed, 24 Dec 2014 9:17:44
Universe code
Speed 54 WPM Try to beat?
Accuracy 91.1%
Rank 2nd place (out of 3)
Opponents saifhhasan (1st place) smit (3rd 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)