This third post is mainly here to show you that you can also create single file posts for convenience. The first post contains more interesting content.
Don’t forget to read the official SuperMD docs to know how to style your content.
code in python:
def func(arg):
"""sample function"""
print(f"Hello {arg}!") # Arg is what is passed to function
if __name__ == "__main__":
func("World")