jkbbwr
fun sayHello() = Runtime.C {""" printf("hello from C!\n"); """} fun main(args: Array<String>) { Runtime.C.includes {""" #include <stdio> """} sayHello() }