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