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

const main = () {
    var hello = () {

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

const print = () {

}