Race Updates Discord About Merch
Home Profile History Competitions Texts Upgrade

typeracer

Pit Stop
Racer Iceyda (iceryda4047)
Race Number 23
Date Thu, 24 Sep 2015 22:16:14
Universe code
Speed 42 WPM Try to beat?
Accuracy 89%
Rank 7th place (out of 10)
Opponents arturojreal (4th place) dsat (1st place) erh4ua (5th place) richardgomes7d (6th place) sanzmaxxon (9th place) yamileth (2nd place) yarrpirate (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)