Overview

Expressions

What and how to use expressions.

Tutorial

Math operations

# addition

a := 5 + 5;

 

# multiplication

b := a * 6;

 

# division

c := b / 3;

 

# subtraction

d := 10 - 2;

String operations

# concatination

hw := "Hello, " .. "World!";

foo := "foo"; foo ..= "bar";