Race Result Details |
Racer | Abby (aeheffington) |
Race Number | 4 |
Date | Thu, 9 Feb 2023 1:04:04 |
Universe | code |
Speed |
57 WPM
![]() |
Accuracy | 97% |
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)
|