June (yannialshoufi)

Race #1

View Pit Stop page for race #1 by yannialshoufiGhost race

View profile for June (yannialshoufi)

Official speed 56.26 wpm (32.85 seconds elapsed during race)
Race Start May 25, 2023 11:34:44am UTC
Race Finish May 25, 2023 11:35:17am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 19.69
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")