import os
with open(os.getenv("OUTPUT_DIR")+"/hello.txt", "w") as file:
    file.write("Yo who dis?")

with open(os.getenv("OUTPUT_DIR")+"/hello2.txt", "w") as file:
    file.write("dis me!!!")

