rn1hd (rnk1hd)

Race #4

View Pit Stop page for race #4 by rnk1hdGhost race

View profile for rn1hd (rnk1hd)

Official speed 69.68 wpm (26.52 seconds elapsed during race)
Race Start October 16, 2022 5:29:41am UTC
Race Finish October 16, 2022 5:30:07am UTC
Outcome Win (1 of 3)
Accuracy 100.0%
Points 24.39
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")