Rethya (rethya)

Race #1

View Pit Stop page for race #1 by rethyaGhost race

View profile for Rethya (rethya)

Official speed 60.20 wpm (30.70 seconds elapsed during race)
Race Start July 13, 2023 8:03:44am UTC
Race Finish July 13, 2023 8:04:15am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 21.07
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")