Race Updates Discord About Merch
Home Profile History Competitions Texts Upgrade

typeracer

Pit Stop
Racer Iceyda (iceryda4047)
Race Number 18
Date Tue, 22 Sep 2015 22:20:30
Universe code
Speed 42 WPM Try to beat?
Accuracy 90.1%
Rank 4th place (out of 2)
Opponents arturojreal (3rd place) dsat (1st place) gersch (6th place) sanzmaxxon (7th place) yamileth (2nd place) yarrpirate (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)