Race Result Details |
Racer | Isaac (isaac113) |
Race Number | 11 |
Date | Thu, 11 Feb 2016 12:17:42 |
Universe | code |
Speed |
37 WPM
![]() |
Accuracy | 91.1% |
Rank | 1st place (out of 2) |
Opponents | blakee (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)
|