Febronio (febronio_)

Race #3

View Pit Stop page for race #3 by febronio_Ghost race

View profile for Febronio (febronio_)

Official speed 28.54 wpm (64.75 seconds elapsed during race)
Race Start June 2, 2025 6:31:58am UTC
Race Finish June 2, 2025 6:33:03am UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 9.99
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")