One Miss (onemiss)

Race #3

View Pit Stop page for race #3 by onemissGhost race

View profile for One Miss (onemiss)

Official speed 43.27 wpm (42.71 seconds elapsed during race)
Race Start August 13, 2023 2:52:54pm UTC
Race Finish August 13, 2023 2:53:37pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 15.15
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")