Numbers

Integers and decimals; basic arithmetic operations.

Declare numbers and do math:

dhoro x = 10 // integers
dhoro y = 3.14 // decimals
lekho(x + y) // prints the summmation
lekho(x - y) // prints the subtraction
lekho(x * 2) // prints the multiplication
lekho(x / 2) // prints the quotient