Race Result Details |
Racer | nyloraqu (nyloraqu) |
Race Number | 36 |
Date | Thu, 16 Jan 2025 14:11:02 |
Universe | code |
Speed |
38 WPM
![]() |
Accuracy | 96.4% |
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)
|