Race Result Details |
Racer | Khan Mohd Asif (er_asif318) |
Race Number | 3 |
Date | Sun, 21 Jan 2024 10:15:37 |
Universe | code |
Speed |
21 WPM
![]() |
Accuracy | 93.3% |
Rank | 3rd 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)
|