# 006: Simple Functions # Creating reusable code # Function with no parameters greet(): show "Hello!" # Call the function greet() greet() greet() # Each call executes the function body