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