Race Result Details |
Racer | nyloraqu (nyloraqu) |
Race Number | 34 |
Date | Thu, 5 Dec 2024 14:48:53 |
Universe | code |
Speed |
37 WPM
![]() |
Accuracy | 97% |
Rank | 1st place (out of 1) |
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)
|