tomo/test/inline_c.tm

9 lines
145 B
Plaintext
Raw Normal View History

2025-04-06 13:07:23 -07:00
func main()
>> inline C:Int32 { int x = 1 + 2; x }
= Int32(3)
>> inline C {
say(Text("Inline C code works!"), true);
}