Race Result Details |
Racer | grainger (graingerofficial) |
Race Number | 3 |
Date | Fri, 25 Aug 2023 16:52:02 |
Universe | code |
Speed |
16 WPM
![]() |
Accuracy | 91.7% |
Rank | 4th place (out of 4) |
Opponents | dakota_fitz123 (3rd place) monke5555 (2nd place) owenjohnson (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)
|