Race Result Details |
Racer | Paul (bigpaul7) |
Race Number | 2 |
Date | Tue, 19 Oct 2021 19:05:28 |
Universe | code |
Speed |
44 WPM
![]() |
Accuracy | 91.9% |
Rank | 2nd place (out of 2) |
Opponents | felixluebken (1st 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)
|