Race Result Details |
Racer | Ricardo (richardgomes7d) |
Race Number | 21 |
Date | Thu, 17 Sep 2015 22:32:48 |
Universe | code |
Speed |
30 WPM
![]() |
Accuracy | 96.9% |
Rank | 2nd place (out of 3) |
Opponents | dsat (3rd place) gersch (1st place) jquiroz (5th place) lcarson35 (6th place) loke73 (4th 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)
|