Race Result Details |
Racer | Wxander Wflaneur Wzak Wboundaries Wbren (abtech19) |
Race Number | 10 |
Date | Thu, 13 Mar 2025 12:07:44 |
Universe | code |
Speed |
34 WPM
![]() |
Accuracy | 92% |
Rank | 1st 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)
|