Race Result Details |
Racer | i_type_fast_with_good_posture (its_over_i_have_da_high_ground) |
Race Number | 1 |
Date | Thu, 15 Apr 2021 23:05:59 |
Universe | code |
Speed |
42 WPM
![]() |
Accuracy | 97% |
Rank | 1st 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)
|