RosettaCodeData/Task/Scope-Function-names-and-la.../Jq/scope-function-names-and-la...

3 lines
100 B
Plaintext

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;