prince (ffhacker)

Race #15

View Pit Stop page for race #15 by ffhackerGhost race

View profile for prince (ffhacker)

Official speed 22.34 wpm (82.72 seconds elapsed during race)
Race Start July 30, 2023 4:59:58pm UTC
Race Finish July 30, 2023 5:01:21pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 7.82
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")