INT 1g 2023-04-21 laplante@plcb.ca GOWEB/Language


title: “INT Type” author: “laplante@plcb.ca” date: 2023-04-21 version: “1.0.0” section: “1g”

category: “GOWEB/Language”

Name

INT — Integer type

Description

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.

Lexical Parser

INT   [0-9]+

Examples

a := 5;
a;

// Result:
5

See also

Version