Race Result Details |
Racer | Daniel (dsat) |
Race Number | 13 |
Date | Thu, 17 Sep 2015 22:44:43 |
Universe | code |
Speed |
64 WPM
![]() |
Accuracy | 95.1% |
Rank | 1st place (out of 10) |
Opponents | apardo04 (6th place) arturojreal (3rd place) erh4ua (4th place) gersch (8th place) lcarson35 (10th place) richardgomes7d (9th place) yamileth (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)
|