Race Result Details |
Racer | Royer (rogerflores) |
Race Number | 5 |
Date | Wed, 10 Sep 2025 22:20:31 |
Universe | code |
Speed |
43 WPM
![]() |
Accuracy | 92.1% |
Rank | 2nd place (out of 8) |
Opponents | crisitan (4th place) danaley (9th place) isidora1234 (8th place) iverjoel (6th place) mismar12 (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)
|