Race Result Details |
Racer | Hermano95 (kovacsgellertpal) |
Race Number | 30 |
Date | Tue, 11 Mar 2025 8:04:31 |
Universe | code |
Speed |
36 WPM
![]() |
Accuracy | 97% |
Rank | 1st place (out of 3) |
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)
|