RosettaCodeData/Task/Scope-Function-names-and-labels/Jq/scope-function-names-and-labels-2.jq
2023-07-01 13:44:08 -04: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;