Race Result Details |
Racer | David (quine) |
Race Number | 9 |
Date | Thu, 17 Oct 2013 22:09:30 |
Universe | code |
Speed |
82 WPM
![]() |
Accuracy | 92.8% |
Rank | 1st place (out of 2) |
Opponents | pentalon (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)
|