Help for this page
# | declares $x in the scope of the block my $lambda = -> $x { $x * $x } ... # | declares $x in the scope of the block sub square($x) { $x * $x }