Race Result Details |
Racer | turbee6 (turbee6) |
Race Number | 61 |
Date | Sat, 6 Apr 2024 1:40:36 |
Universe | code |
Speed |
27 WPM
![]() |
Accuracy | 94.8% |
Rank | 3rd place (out of 3) |
Opponents | typewritert (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)
|