Integer

Integers in ufLang represent numerals. You can declare an int and apply arithmetic operations on it as follows:

var number : Int = 10;

number += 2; // number = 12;

Last updated