Skip to main content

Data Types

The Language contains three data types

  1. Int
  2. Double
  3. Bool

Int

This example demonstrates the declaration of the int data type

fn start() void {
int i = 10;
int j = 20;
return;
}

Double

This example demonstrates the declaration of the double data type

fn start() void {
double i = 10.1;
double j = 20.2;
return;
}

Bool

This example demonstrates the declaration of the bool data type

fn start() void {
bool i = true;
bool j = false;
return;
}