title: “INT Type” author: “laplante@plcb.ca” date: 2023-04-21 version: “1.0.0” section: “1g”
INT — Integer type
The int
type represents integer numbers.
A variable of type int
can store values in the range:
-9223372036854775808 to 9223372036854775807
This corresponds to a 64-bit signed integer (int64
) in the Go programming language.
INT [0-9]+
a := 5;
a;
// Result:
5