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