Files
hakorune/examples/llvm11_console_smoke.hako

10 lines
150 B
Plaintext

// LLVM 11.2 minimal smoke: console.log with string literal only
static box Main {
main() {
console.log("LLVM 11.2 smoke")
return 0
}
}