Isiah (isiahthetyper)

Race #1

View Pit Stop page for race #1 by isiahthetyperGhost race

View profile for Isiah (isiahthetyper)

Official speed 39.18 wpm (47.17 seconds elapsed during race)
Race Start August 11, 2023 6:02:25am UTC
Race Finish August 11, 2023 6:03:12am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 13.71
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")