Compare commits

..

No commits in common. "v6" and "main" have entirely different histories.
v6 ... main

3 changed files with 2 additions and 12 deletions

View File

@ -1 +1,2 @@
# python hello-world # f1c6ae6ad9d24e0d974bc203c5b19109

View File

@ -1,2 +0,0 @@
def main(request):
return "hello, world"

View File

@ -1,9 +0,0 @@
def print_name(name):
print("The name is:", name)
def main(request):
request_json = request.get_json(silent=True)
print(request_json)
name = "Ali"
print_name(name)
return name