Abylaikhan (ho1den)

Race #13

View Pit Stop page for race #13 by ho1denGhost race

View profile for Abylaikhan (ho1den)

Official speed 40.31 wpm (45.84 seconds elapsed during race)
Race Start July 19, 2023 12:54:14pm UTC
Race Finish July 19, 2023 12:55:00pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 14.11
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")