RosettaCodeData/Task/Scope-Function-names-and-labels/Jq/scope-function-names-and-labels-1.jq
2023-07-01 13:44:08 -04:00

5 lines
109 B
Text

def NAME:
def NAME: 2;
1, NAME; # this calls the inner function, not the outer function
NAME # => 1, 2