We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6128263 commit 08f3ab0Copy full SHA for 08f3ab0
1 file changed
example_workflows/arithmetic/workflow.py
@@ -0,0 +1,10 @@
1
+def get_prod_and_div(x, y):
2
+ return {"prod": x * y, "div": x / y}
3
+
4
5
+def get_sum(x, y):
6
+ return x + y
7
8
9
+def get_square(x):
10
+ return x ** 2
0 commit comments