aboutsummaryrefslogtreecommitdiff
path: root/test/inline_c.tm
blob: a79359d1d998137f3d1737e756a6d61ed6dd8cb4 (plain)
1
2
3
4
5
6
7
8

func main()
    >> inline C:Int32 { int x = 1 + 2; x }
    = Int32(3)

    >> inline C {
        say(Text("Inline C code works!"), true);
    }