tstats[shanyg] (shanyg)

Race #1

View Pit Stop page for race #1 by shanygGhost race

View profile for tstats[shanyg] (shanyg)

Official speed 42.98 wpm (43.00 seconds elapsed during race)
Race Start August 28, 2023 5:42:57pm UTC
Race Finish August 28, 2023 5:43:40pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 15.04
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")