aboutsummaryrefslogtreecommitdiff
path: root/tests/main.amal
blob: a7b457683bf607a46c740120b8863fca45631a2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const io = @import("tests/io.amal");

const main = fn {
    var hello = fn {

    }
    const value = "hello";
    print(value, "world", 356, 13.37);
    var num1: i32;
    const num2 = 23232;
    const num3 = num1 + num2 * 30;
    const num4 = (num1 + num2) * num3 * ((34 + 32) / 234.345);
}

const print = fn {

}