Race Result Details |
Racer | Emily (erh4ua) |
Race Number | 24 |
Date | Thu, 1 Oct 2015 22:20:55 |
Universe | code |
Speed |
35 WPM
![]() |
Accuracy | 89% |
Rank | 5th place (out of 4) |
Opponents | dsat (1st place) oliver84 (3rd place) richardgomes7d (4th place) yarrpirate (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)
|