(atorpy)

Race #4

View Pit Stop page for race #4 by atorpyGhost race

View profile for (atorpy)

Official speed 47.62 wpm (38.81 seconds elapsed during race)
Race Start May 6, 2022 6:02:36pm UTC
Race Finish May 6, 2022 6:03:14pm UTC
Outcome No win (1 of 1)
Accuracy 95.0%
Points 16.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")