Skip to content

Variables Syntax

gene-2012 edited this page Jan 6, 2024 · 2 revisions

Variables Syntax

Useage

var <variable name> = <value>;

Variables are declared with the var keyword. The value of the variable can be any number, text, or boolean.

Example

import io;
import os;
var name = "upizpp";
var age = 15;
io.print(name);
io.print(age);
os.system("pause");

Clone this wiki locally