Race Result Details |
Racer | Billy (wayrus) |
Race Number | 9 |
Date | Thu, 9 Feb 2023 1:04:04 |
Universe | code |
Speed |
58 WPM
![]() |
Accuracy | 97.1% |
Rank | 1st place (out of 2) |
Opponents | aeheffington (2nd 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)
|