| Race Result Details | 
| Racer | Yoga Aditya (yogaaditya_) | 
| Race Number | 3 | 
| Date | Thu, 21 Mar 2024 1:09:45 | 
| Universe | code | 
| Speed | 22 WPM  Try to beat? | 
| Accuracy | 91.8% | 
| Rank | 6th place (out of 14) | 
| Opponents | adiaryasuta (4th place) baskara_kungkang (5th place) deva28 (7th place) lil_widhi (8th place) nobel_saputra (3rd place) novalfaiq (1st place) vinnvinn (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) |