⭐️⭐️⭐️ (pbnl2)

Race #23

View Pit Stop page for race #23 by pbnl2Ghost race

View profile for ⭐️⭐️⭐️ (pbnl2)

Official speed 65.63 wpm (28.16 seconds elapsed during race)
Race Start January 14, 2023 11:28:49pm UTC
Race Finish January 14, 2023 11:29:18pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 22.97
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")