rn1hd (rnk1hd)

Race #2

View Pit Stop page for race #2 by rnk1hdGhost race

View profile for rn1hd (rnk1hd)

Official speed 60.76 wpm (30.41 seconds elapsed during race)
Race Start October 16, 2022 5:26:25am UTC
Race Finish October 16, 2022 5:26:55am UTC
Outcome No win (3 of 3)
Accuracy 99.0%
Points 21.27
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")