Race Result Details |
Racer | Greg (sanzmaxxon) |
Race Number | 3 |
Date | Thu, 3 Sep 2015 22:17:46 |
Universe | code |
Speed |
28 WPM
![]() |
Accuracy | 93.9% |
Rank | 2nd place (out of 2) |
Opponents | xrdmzx (1st 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)
|