Race Result Details |
Racer | himanshu (blueeagle9) |
Race Number | 28 |
Date | Tue, 14 Feb 2012 16:24:58 |
Universe | code |
Speed |
21 WPM
![]() |
Accuracy | 93.3% |
Rank | 3rd place (out of 3) |
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)
|