-
-
Notifications
You must be signed in to change notification settings - Fork 4
Auto edited this page Jul 4, 2022
·
3 revisions
& sigil alias for all 'and' operations and overloaded operators
1 & 1 == 1 and 1 == true
natural for beginners but unfamiliar for long time programmers square & print 2 == print(square(2))
& sigil for function pointers
map &square [1 2 3] == [1 4 9]
Note that due to automatic broadcasting explicitly using map and pointers should rarely be needed.