Race Result Details |
Racer | RBK (rbiskupicknight) |
Race Number | 3 |
Date | Thu, 3 Sep 2015 22:11:33 |
Universe | code |
Speed |
51 WPM
![]() |
Accuracy | 95.1% |
Rank | 2nd place (out of 4) |
Opponents | oliver84 (3rd 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)
|