Race Result Details |
Racer | Bluue (bluuefuzzy) |
Race Number | 2 |
Date | Thu, 10 Aug 2023 2:46:17 |
Universe | code |
Speed |
31 WPM
![]() |
Accuracy | 91.5% |
Rank | 4th place (out of 4) |
Opponents | frostyinfinitum (3rd place) ghrey303 (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)
|