Adrian (mega_13)

Race #6

View Pit Stop page for race #6 by mega_13Ghost race

View profile for Adrian (mega_13)

Official speed 35.61 wpm (51.90 seconds elapsed during race)
Race Start July 19, 2023 8:50:24pm UTC
Race Finish July 19, 2023 8:51:16pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 12.46
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")