Race Result Details |
Racer | i_type_fast_with_good_posture (its_over_i_have_da_high_ground) |
Race Number | 2 |
Date | Fri, 16 Apr 2021 0:40:17 |
Universe | code |
Speed |
44 WPM
![]() |
Accuracy | 97% |
Rank | 2nd 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)
|