Tahsin (tahsin__1)

Race #30

View Pit Stop page for race #30 by tahsin__1Ghost race

View profile for Tahsin (tahsin__1)

Official speed 34.20 wpm (54.04 seconds elapsed during race)
Race Start May 4, 2025 1:54:53am UTC
Race Finish May 4, 2025 1:55:48am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 11.97
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")