Hanny (monson312)

Race #2

View Pit Stop page for race #2 by monson312Ghost race

View profile for Hanny (monson312)

Official speed 55.04 wpm (33.58 seconds elapsed during race)
Race Start January 13, 2024 3:18:35pm UTC
Race Finish January 13, 2024 3:19:09pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 19.26
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")