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

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

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