Race Result Details |
Racer | raging_wolf (raging_wolf) |
Race Number | 43 |
Date | Thu, 10 Dec 2020 12:10:35 |
Universe | code |
Speed |
30 WPM
![]() |
Accuracy | 92.6% |
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)
|