Aakib (aa_0808_)

Race #73

View Pit Stop page for race #73 by aa_0808_Ghost race

View profile for Aakib (aa_0808_)

Official speed 34.11 wpm (54.18 seconds elapsed during race)
Race Start September 6, 2023 9:04:17am UTC
Race Finish September 6, 2023 9:05:11am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 11.94
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")