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

const main = fn {
    var hello = fn {

    }
    const value = "hello";
    print(value, "world", 356);
}

const print = fn {

}