zaarium (zaarium)

Race #1

View Pit Stop page for race #1 by zaariumGhost race

View profile for zaarium (zaarium)

Official speed 35.84 wpm (51.56 seconds elapsed during race)
Race Start July 7, 2023 10:28:09am UTC
Race Finish July 7, 2023 10:29:01am UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 12.54
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")