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