File size: 122 Bytes
8ce55a3
 
 
 
 
 
1
2
3
4
5
6
7
def hello_world():
    return "Hello World Function"

if __name__ == "__main__":
    test = hello_world()
    print(test)