Race Result Details |
Racer | rahul (rahularctic) |
Race Number | 2 |
Date | Tue, 26 Feb 2013 18:10:03 |
Universe | code |
Speed |
27 WPM
![]() |
Accuracy | 87.5% |
Rank | 1st place (out of 2) |
Opponents | bugattiveyronsk (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)
|