RRKS (rrks43)

Race #9

View Pit Stop page for race #9 by rrks43Ghost race

View profile for RRKS (rrks43)

Official speed 55.71 wpm (33.17 seconds elapsed during race)
Race Start May 28, 2023 8:52:29pm UTC
Race Finish May 28, 2023 8:53:02pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.50
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")