RosettaCodeData/Task/Scope-Function-names-and-labels/Jq/scope-function-names-and-labels-1.jq
2017-09-25 22:28:19 +02: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