Race Result Details |
Racer | Shalini (shalinikaleeswaran) |
Race Number | 16 |
Date | Fri, 4 Oct 2013 11:56:21 |
Universe | code |
Speed |
53 WPM
![]() |
Accuracy | 93.3% |
Rank | 1st 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)
|