Compare commits

...

1 Commits
main ... v8

Author SHA1 Message Date
FunctionsAPI
2ec1c32178 Automatic push from FunctionsAPI 2025-01-15 07:02:50 +00:00
3 changed files with 11 additions and 2 deletions

View File

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

8
main.py Normal file
View File

@ -0,0 +1,8 @@
def main():
print_name("Ali")
def print_name(name):
# Print the name
print("The name is:", name)
if __name__ == "__main__":
main()

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
functions-framework==1.4.3
markupsafe==2.0.1