Junaed (junaed_siam)

Race #6

View Pit Stop page for race #6 by junaed_siamGhost race

View profile for Junaed (junaed_siam)

Official speed 54.16 wpm (34.12 seconds elapsed during race)
Race Start June 2, 2023 9:46:22am UTC
Race Finish June 2, 2023 9:46:56am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 18.96
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")