Skip to content

Instantly share code, notes, and snippets.

@Kamandlou
Created April 5, 2022 18:19
Show Gist options
  • Save Kamandlou/9502e5c1d48deb4e3dafe3b7de5cb896 to your computer and use it in GitHub Desktop.
Save Kamandlou/9502e5c1d48deb4e3dafe3b7de5cb896 to your computer and use it in GitHub Desktop.
Datatypes in Golang
uint8 : 0 to 255
uint16 : 0 to 65535
uint32 : 0 to 4294967295
uint64 : 0 to 18446744073709551615
int8 : -128 to 127
int16 : -32768 to 32767
int32 : -2147483648 to 2147483647
int64 : -9223372036854775808 to 9223372036854775807
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment