Race Result Details |
Racer | AJAJ (aj_baba) |
Race Number | 2 |
Date | Sat, 22 Feb 2025 7:59:40 |
Universe | code |
Speed |
25 WPM
![]() |
Accuracy | 90.8% |
Rank | 3rd place (out of 5) |
Opponents | nakngteteng_69 (1st 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)
|