Race Result Details |
| Racer | Junji (mochi_with_shoyu) |
| Race Number | 58 |
| Date | Wed, 25 Sep 2024 23:36:32 |
| Universe | code |
| Speed |
55 WPM
Try to beat?
|
| Accuracy | 97.6% |
| Rank | 3rd place (out of 4) |
| Opponents | bluefire26 (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)
|
