DAY 2 - Variables, Constants, Datatypes in GO
Variables
In Go, variables are used to store values of different types.
TypeDescription
intStores integers (whole numbers)
float32Stores floating-point numbers
stringStores text values
boolStores boolean values (true or false)
Different ...
gosprint90.hashnode.dev4 min read