``` fun sayHello() = Runtime.C {""" printf("he...
# random
j
Copy code
fun sayHello() = Runtime.C {"""
    printf("hello from C!\n");
"""}

fun main(args: Array<String>) {
    Runtime.C.includes {"""
    #include <stdio>
    """}
    sayHello()
}