Race Result Details |
Racer | Abby (aeheffington) |
Race Number | 9 |
Date | Thu, 9 Feb 2023 17:56:50 |
Universe | code |
Speed |
59 WPM
![]() |
Accuracy | 96% |
Rank | 2nd place (out of 2) |
Opponents | wayrus (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)
|