Race Result Details |
Racer | Twenty One (twenty_one_21) |
Race Number | 1 |
Date | Tue, 19 Sep 2023 9:26:55 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 94.1% |
Rank | 2nd place (out of 2) |
Opponents | ferrorobroom (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)
|