#4_S :-) (supeer_heroo)

Race #26

View Pit Stop page for race #26 by supeer_herooGhost race

View profile for #4_S :-) (supeer_heroo)

Official speed 39.08 wpm (47.29 seconds elapsed during race)
Race Start July 14, 2023 2:01:40pm UTC
Race Finish July 14, 2023 2:02:27pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 13.68
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")