Race Result Details |
| Racer | Misael Rocha (blizhte) |
| Race Number | 27 |
| Date | Sun, 15 Jun 2025 0:42:27 |
| Universe | code |
| Speed |
27 WPM
Try to beat?
|
| Accuracy | 94.6% |
| Rank | 9th place (out of 19) |
| Opponents | alvaroricaldis (6th place) cris1310 (12th place) erick0334 (4th place) fa1progra (5th place) fanor (7th place) jgary199 (1st place) jhony99 (13th place) jhosmar_ (3rd place) magali_alanoca (14th place) marco_soria (11th place) mau_r123 (10th place) noeleliasvm (8th 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)
|
