Race Result Details |
Racer | Adrian Peterson (akosipc) |
Race Number | 2 |
Date | Thu, 31 Aug 2017 8:21:22 |
Universe | code |
Speed |
54 WPM
![]() |
Accuracy | 94.8% |
Rank | 5th place (out of 10) |
Opponents | rstacruz (1st place) stlsixers (6th place) thurginesis (2nd place) xerxesregulus (9th 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)
|