Race Result Details |
Racer | Juan De Luna (juandluna) |
Race Number | 1 |
Date | Mon, 4 Dec 2023 17:49:43 |
Universe | code |
Speed |
34 WPM
![]() |
Accuracy | 90.9% |
Rank | 2nd place (out of 2) |
Opponents | wiha2 (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)
|