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