Race Result Details |
Racer | [AhK] Jorge Luiz (santosjl22) |
Race Number | 35 |
Date | Mon, 11 May 2015 13:39:08 |
Universe | code |
Speed |
53 WPM
![]() |
Accuracy | 93.3% |
Rank | 2nd place (out of 2) |
Opponents | dudiellon (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)
|