a.mx raw

   1  package main
   2  
   3  type BasicKind int32
   4  
   5  const (
   6  	Invalid BasicKind = iota
   7  	Bool
   8  	Int8
   9  	Int16
  10  	Int32
  11  	Int64
  12  	Uint8
  13  	Uint16
  14  	Uint32
  15  	Uint64
  16  	Float32
  17  	Float64
  18  	TCString
  19  	UnsafePointer
  20  	UntypedBool
  21  	UntypedInt
  22  	UntypedRune
  23  	UntypedFloat
  24  	UntypedString
  25  	UntypedNil
  26  )
  27