... (smthth)

Race #1

View Pit Stop page for race #1 by smththGhost race

View profile for ... (smthth)

Official speed 44.07 wpm (41.93 seconds elapsed during race)
Race Start June 28, 2023 4:43:13pm UTC
Race Finish June 28, 2023 4:43:55pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 15.43
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")