Race Result Details |
| Racer | Mike Rafone (yotsugii) |
| Race Number | 1 |
| Date | Wed, 5 Nov 2025 6:30:50 |
| Universe | code |
| Speed |
42 WPM
Try to beat?
|
| Accuracy | 90.9% |
| Rank | 4th place (out of 7) |
| Opponents | hanyuyuzu6969 (6th place) kirkandrew (5th place) mr_penguin01 (1st place) normel_1 (3rd place) supremekaiden (2nd 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)
|
