Race Result Details |
Racer | Nima (nanimonima) |
Race Number | 94 |
Date | Fri, 15 Sep 2023 5:34:42 |
Universe | code |
Speed |
54 WPM
![]() |
Accuracy | 92% |
Rank | 2nd place (out of 10) |
Opponents | bryan_bolang (8th place) epelinsaja (9th place) ferrylim_ (5th place) frendhy (4th place) juliusevan (3rd place) priscillia_desya (7th place) sandyby (6th 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)
|