tstats[typhoid] (typhoid)

Race #1

View Pit Stop page for race #1 by typhoidGhost race

View profile for tstats[typhoid] (typhoid)

Official speed 73.36 wpm (25.19 seconds elapsed during race)
Race Start August 8, 2021 9:01:51am UTC
Race Finish August 8, 2021 9:02:16am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 25.67
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")