-
-
Notifications
You must be signed in to change notification settings - Fork 4
sigil
pannous edited this page Nov 14, 2020
·
3 revisions
Angle strives to avoid all sigils (operator symbols / signs)
& sigil for function pointer
map &square [1 2 3] == [1 4 9]
can be written without '&' as
map square [1 2 3] == [1 4 9]
or
map function square on [1 2 3] == [1 4 9]