Advertisement
Koepnick

primitives

Jan 15th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.33 KB | None | 0 0
  1. bool
  2.  
  3. string
  4.  
  5. // Bit length of unspecified integer types (int, uint) default to the underlying architecture of the machine
  6. int  int8  int16  int32  int64
  7. uint uint8 uint16 uint32 uint64 uintptr
  8.  
  9. byte // alias for uint8
  10.  
  11. rune // alias for int32
  12.      // represents a Unicode code point
  13.  
  14. float32 float64
  15.  
  16. complex64 complex128
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement