-
Notifications
You must be signed in to change notification settings - Fork 5
Closed
Description
are control structures like if
and while
already supported?
Example:
def function_one(x):
u = 'https://play.min.io/bucket/example.csv?versioinId=fe45d98a'
return x
def function_two(y):
return y
def function_three(c, d):
return c + d
def my_workflow(a, b, d=0):
if a > 0:
c = function_one(a)
else:
c = function_two(b)
while d <= 0:
d = function_three(c, d)
return d
my_workflow(1, 2)
Metadata
Metadata
Assignees
Labels
No labels