peebs (p33b5)

Race #1

View Pit Stop page for race #1 by p33b5Ghost race

View profile for peebs (p33b5)

Official speed 39.60 wpm (46.67 seconds elapsed during race)
Race Start June 1, 2023 3:43:18pm UTC
Race Finish June 1, 2023 3:44:05pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 13.86
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")