Featfox (featfox)

Race #1

View Pit Stop page for race #1 by featfoxGhost race

View profile for Featfox (featfox)

Official speed 59.79 wpm (30.91 seconds elapsed during race)
Race Start July 12, 2023 6:22:34pm UTC
Race Finish July 12, 2023 6:23:05pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 20.93
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")