Race Result Details |
Racer | Dmills (dmills12121212) |
Race Number | 1 |
Date | Thu, 2 Oct 2025 14:49:01 |
Universe | code |
Speed |
84 WPM
![]() |
Accuracy | 100% |
Rank | 1st place (out of 6) |
Opponents | drow217892 (2nd place) gothkristina (4th place) lynda01 (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)
|