Race Result Details |
Racer | Unknown (chess1234) |
Race Number | 21 |
Date | Thu, 30 Apr 2015 11:23:33 |
Universe | code |
Speed |
42 WPM
![]() |
Accuracy | 72.3% |
Rank | 1st place (out of 2) |
Opponents | zoli_ (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)
|