5 lines
119 B
Python
5 lines
119 B
Python
def main(request):
|
|
return "hello, world"
|
|
def print_name(name):
|
|
# Print the name
|
|
print("The name is:", name) |