Race Result Details |
| Racer | fastpotion (fastpotion) |
| Race Number | 6 |
| Date | Sat, 17 Feb 2024 17:29:03 |
| Universe | code |
| Speed |
61 WPM
Try to beat?
|
| Accuracy | 97.1% |
| Rank | 3rd place (out of 3) |
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)
|
