RosettaCodeData/Task/Scope-Function-names-and-labels/Jq/scope-function-names-and-labels-2.jq
2017-09-25 22:28:19 +02:00

2 lines
100 B
Text

def F(x): if x == 0 then M(x) else 1 end; # NOT POSSIBLE
def M(x): if x == 1 then F(x) else 2 end;