Race Result Details |
Racer | (scraex) |
Race Number | 141 |
Date | Thu, 17 Feb 2022 14:55:40 |
Universe | code |
Speed |
49 WPM
![]() |
Accuracy | 91.8% |
Rank | 1st place (out of 2) |
Opponents | jasimk (2nd place) sura5 (3rd 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)
|