are control structures like if and while already supported?
Example:
deffunction_one(x):
u='https://play.min.io/bucket/example.csv?versioinId=fe45d98a'returnxdeffunction_two(y):
returnydeffunction_three(c, d):
returnc+ddefmy_workflow(a, b, d=0):
ifa>0:
c=function_one(a)
else:
c=function_two(b)
whiled<=0:
d=function_three(c, d)
returndmy_workflow(1, 2)
are control structures like
ifandwhilealready supported?Example: