Race Result Details |
Racer | ghost_of_uchiha (ghost_of_uchiha) |
Race Number | 5 |
Date | Fri, 14 Jul 2023 9:09:40 |
Universe | code |
Speed |
39 WPM
![]() |
Accuracy | 94.1% |
Rank | 2nd place (out of 3) |
Opponents | nammy18 (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)
|