John (craftinpark)

Race #4

View Pit Stop page for race #4 by craftinparkGhost race

View profile for John (craftinpark)

Official speed 63.68 wpm (29.02 seconds elapsed during race)
Race Start May 30, 2023 10:46:54pm UTC
Race Finish May 30, 2023 10:47:23pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 22.29
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")