Cres (crespear)

Race #1

View Pit Stop page for race #1 by crespearGhost race

View profile for Cres (crespear)

Official speed 38.56 wpm (47.93 seconds elapsed during race)
Race Start May 23, 2023 6:15:03pm UTC
Race Finish May 23, 2023 6:15:51pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 13.49
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")