some day (hatia_34534234)

Race #5

View Pit Stop page for race #5 by hatia_34534234Ghost race

View profile for some day (hatia_34534234)

Official speed 38.22 wpm (48.35 seconds elapsed during race)
Race Start July 4, 2023 6:47:37pm UTC
Race Finish July 4, 2023 6:48:26pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 13.38
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")