This is the doc file for the datatypes in Gago
Data Types:
- string (in Go:
lang.StringType
) - int (in Go:
lang.IntType
) - float (in Go:
lang.FloatType
) - null (in Go:
lang.NullType
) representsnil
in Go. - bool (true or false) (in Go:
lang.True
orlang.False
in Go) - Object (in Go:
object.Object
) - Array (in Go:
array.Slice
)