Race Result Details |
Racer | Arturo (arturojreal) |
Race Number | 14 |
Date | Tue, 22 Sep 2015 22:20:26 |
Universe | code |
Speed |
46 WPM
![]() |
Accuracy | 90.6% |
Rank | 3rd place (out of 2) |
Opponents | dsat (1st place) gersch (6th 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)
|