Block Comment Bash
# Bash doesn't have block comments like Python
# HOWEVER!
# Similarly like Python, there is a way to bypass this limitation
# Try using this workaround in your files
variableName='''
block comment goes here
'''
Aggressive Anteater (AlexDev404)