Race Result Details |
| Racer | Navi (navibernal) |
| Race Number | 2 |
| Date | Sun, 17 May 2026 20:59:23 |
| Universe | code |
| Speed |
38 WPM
Try to beat?
|
| Accuracy | 91.1% |
| Rank | 3rd place (out of 4) |
| Opponents | abwebwebweosas (4th place) loucolico (2nd place) neildoyogan (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)
|
