Files
hakorune/examples/console_native_test.hako

17 lines
373 B
Plaintext

// ConsoleBox native build test - minimal example
// Build native:
// cargo build --release --features cranelift-jit
// ./tools/build_aot.sh examples/console_native_test.hako console_app
static box Main {
greet(name) {
local c
c = new ConsoleBox()
c.println("Hello, " + name + "!")
return 0
}
main() {
return me.greet("Nyash Native")
}
}