Race Result Details |
Racer | thanh ha (hatienthanh) |
Race Number | 7 |
Date | Wed, 30 Aug 2023 9:06:40 |
Universe | code |
Speed |
31 WPM
![]() |
Accuracy | 94% |
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)
|