Abylaikhan (ho1den)

Race #10

View Pit Stop page for race #10 by ho1denGhost race

View profile for Abylaikhan (ho1den)

Official speed 57.11 wpm (32.36 seconds elapsed during race)
Race Start July 19, 2023 12:28:20pm UTC
Race Finish July 19, 2023 12:28:52pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 19.99
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")