Race Result Details |
Racer | Daniel (dsat) |
Race Number | 8 |
Date | Thu, 17 Sep 2015 22:32:49 |
Universe | code |
Speed |
30 WPM
![]() |
Accuracy | 91.1% |
Rank | 3rd place (out of 3) |
Opponents | gersch (1st 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)
|