Michał (haosmk)

Race #1

View Pit Stop page for race #1 by haosmkGhost race

View profile for Michał (haosmk)

Official speed 40.60 wpm (45.52 seconds elapsed during race)
Race Start October 12, 2025 11:57:32am UTC
Race Finish October 12, 2025 11:58:17am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 14.21
Text #10002 (Length: 154 characters)

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")