February 2017
Intermediate to advanced
402 pages
8h 7m
English
The operators are used to perform arithmetic operations and make comparisons between many things. The following operators are reserved by Go language.

Most commonly used operators are the arithmetic operators and comparators. Arithmetic operators are as following:
+ operator for sums- operator for subtractions* operator for multiplications/ operator for divisions% operator for division remainders++ operator to add 1 to the current variable-- operator to subtract 1 to the current variableOn the other side, comparators are used to check the differences between two statements:
== operator to check if two values ...Read now
Unlock full access