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