Race Result Details |
Racer | jaselsss (jasssel) |
Race Number | 1 |
Date | Fri, 6 Jun 2025 1:43:19 |
Universe | code |
Speed |
33 WPM
![]() |
Accuracy | 94.1% |
Rank | 2nd place (out of 16) |
Opponents | alex_ramos (11th place) ariane_salazar (4th place) beltran_tarqui (3rd place) jhulmab (13th place) liz_mariela (7th place) maria_ortega10 (1st place) pedro_serrudo (10th place) samiraarancibia123426 (6th place) sarai_vega012 (12th place) sharick_chungara (8th place) tocsky (9th place) yarot123 (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)
|