Race Result Details |
Racer | Inusah (inusah) |
Race Number | 1781 |
Date | Fri, 18 Aug 2023 5:30:35 |
Universe | code |
Speed |
43 WPM
![]() |
Accuracy | 98.1% |
Rank | 2nd place (out of 4) |
Opponents | anuparyal (4th place) yashkumar0 (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)
|