Compare commits

..

1 Commits
main ... v5

Author SHA1 Message Date
FunctionsAPI
96e246900e Automatic push from FunctionsAPI 2025-05-22 12:44:06 +00:00
3 changed files with 12 additions and 1 deletions

View File

@ -1,2 +1,9 @@
# 27d530063c3142efa32eaffb179defde
# python hello-world
fn add(a: i32, b: i32) -> i32 {
a + b
}
fn main() {
let result = add(5, 3);
println!("The sum is: {}", result);
}

2
main.py Normal file
View File

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

2
requirements.txt Normal file
View File

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