Race Result Details |
Racer | Commotion6071 (commotion6071) |
Race Number | 406 |
Date | Thu, 9 Oct 2025 19:58:37 |
Universe | code |
Speed |
65 WPM
![]() |
Accuracy | 98.1% |
Rank | 2nd 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)
|