Race Result Details |
Racer | damn it matt (stlsixers) |
Race Number | 3 |
Date | Thu, 31 Aug 2017 8:21:23 |
Universe | code |
Speed |
52 WPM
![]() |
Accuracy | 93.1% |
Rank | 6th place (out of 10) |
Opponents | akosipc (5th place) rstacruz (1st 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)
|