Golang operators: Difference between revisions

From wikinotes
(Created page with "= Arithmetic = <blockquote> <syntaxhighlight lang="go"> 1 + 1 // addition 1 - 1 // subtraction 1 * 1 // multiplication 1 / 1 // division 1 % 1 // modulus </syntaxhighlight> </...")
(No difference)

Revision as of 13:54, 29 May 2022

Arithmetic

1 + 1 // addition
1 - 1 // subtraction
1 * 1 // multiplication
1 / 1 // division
1 % 1 // modulus