Race Result Details |
Racer | Emily (erh4ua) |
Race Number | 16 |
Date | Thu, 24 Sep 2015 22:16:12 |
Universe | code |
Speed |
43 WPM
![]() |
Accuracy | 91.1% |
Rank | 5th place (out of 10) |
Opponents | arturojreal (4th place) dsat (1st place) iceryda4047 (7th place) richardgomes7d (6th place) sanzmaxxon (9th place) yamileth (2nd place) yarrpirate (3rd 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)
|