uruma (almg)

Race #1

View Pit Stop page for race #1 by almgGhost race

View profile for uruma (almg)

Official speed 27.41 wpm (67.42 seconds elapsed during race)
Race Start June 6, 2025 12:37:54am UTC
Race Finish June 6, 2025 12:39:01am UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 9.59
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")