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

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

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