Race Result Details |
Racer | Quirkedupwhiteboy (goated_with_the_sauce) |
Race Number | 3 |
Date | Thu, 12 Sep 2024 13:55:24 |
Universe | code |
Speed |
55 WPM
![]() |
Accuracy | 94.2% |
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)
|