2025-08-30 08:54:15 +09:00
|
|
|
// ConsoleBox native build test - simplest version
|
|
|
|
|
// Build native:
|
2025-11-06 15:41:52 +09:00
|
|
|
// ./tools/build_aot.sh examples/console_native_simple.hako console_simple
|
2025-08-30 08:54:15 +09:00
|
|
|
|
|
|
|
|
static box Main {
|
|
|
|
|
main() {
|
|
|
|
|
local c
|
|
|
|
|
c = new ConsoleBox()
|
|
|
|
|
c.println("Hello Nyash Native!")
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
}
|