Files
hakorune/examples/console_native_simple.hako

12 lines
267 B
Plaintext
Raw Permalink Normal View History

// ConsoleBox native build test - simplest version
// Build native:
// ./tools/build_aot.sh examples/console_native_simple.hako console_simple
static box Main {
main() {
local c
c = new ConsoleBox()
c.println("Hello Nyash Native!")
return 0
}
}