Race Result Details |
Racer | Gersch (gersch) |
Race Number | 6 |
Date | Thu, 17 Sep 2015 22:32:31 |
Universe | code |
Speed |
42 WPM
![]() |
Accuracy | 99.4% |
Rank | 1st place (out of 3) |
Opponents | dsat (3rd place) jquiroz (5th place) lcarson35 (6th place) loke73 (4th place) richardgomes7d (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)
|