Iso (isolated101)

Race #2

View Pit Stop page for race #2 by isolated101Ghost race

View profile for Iso (isolated101)

Official speed 64.33 wpm (28.73 seconds elapsed during race)
Race Start July 29, 2023 8:28:00pm UTC
Race Finish July 29, 2023 8:28:29pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 22.51
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")