FrostyInfinitum (frostyinfinitum)

Race #2

View Pit Stop page for race #2 by frostyinfinitumGhost race

View profile for FrostyInfinitum (frostyinfinitum)

Official speed 38.21 wpm (48.36 seconds elapsed during race)
Race Start August 10, 2023 2:45:17am UTC
Race Finish August 10, 2023 2:46:05am UTC
Outcome No win (3 of 4)
Accuracy 94.0%
Points 13.37
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")