Race Result Details |
Racer | I Want (helpplz) |
Race Number | 2 |
Date | Mon, 9 Apr 2018 23:40:00 |
Universe | code |
Speed |
37 WPM
![]() |
Accuracy | 97% |
Rank | 2nd place (out of 4) |
Opponents | gautamibuddha (4th place) type_is_lyfe (3rd place) xithes (1st 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)
|