shadowing variable names doenst seem to work correctly.
neither with custom name:
echo:
@[@[1,2],@[3,4]].items |>
map[a](
a.items |> map[a](a+1).toSeq()).
toSeq()
nor with it:
echo:
@[@[1,2],@[3,4]].items |>
map(
it.items |> map(it+1).toSeq()).
toSeq()
shadowing variable names doenst seem to work correctly.
neither with custom name:
nor with it: