Race Result Details |
Racer | Gersch (gersch) |
Race Number | 19 |
Date | Tue, 22 Sep 2015 22:20:48 |
Universe | code |
Speed |
30 WPM
![]() |
Accuracy | 89% |
Rank | 6th place (out of 2) |
Opponents | arturojreal (3rd place) dsat (1st place) iceryda4047 (4th place) sanzmaxxon (7th place) yamileth (2nd place) yarrpirate (5th 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)
|