Aakib (aa_0808_)

Race #36

View Pit Stop page for race #36 by aa_0808_Ghost race

View profile for Aakib (aa_0808_)

Official speed 39.66 wpm (46.60 seconds elapsed during race)
Race Start August 22, 2023 12:07:54pm UTC
Race Finish August 22, 2023 12:08:40pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 13.88
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")