Talk:Augmented assignment
Add topicAppearance
Latest comment: 7 years ago by Paddy3118 in topic On Computed assignment locations
| This article is rated Start-class on Wikipedia's content assessment scale. It is of interest to the following WikiProjects: | |||||||||||||||||||||
| |||||||||||||||||||||
Perl6
[edit]I think Perl6 should also be mentioned, because it has meta-operators, and as such every operator can be used this way (unlike having +=, *=, etc explicitly mentioned in the operator table, they have an `op=` operator, that can be used with every operator. — Preceding unsigned comment added by 93.134.114.77 (talk) 2016-01-05T08:27:04
On Computed assignment locations
[edit]Found when creating a simple histogram of die rolls in a proprietary language using:
histogram[roll_die()] += 1
And getting odd results. --Paddy (talk) 10:13, 21 January 2019 (UTC)
