/** * This is a hello-world example. * * The WASM interpreter result and compiler output will be shown on the bottom in this example. * * You can load other example programs to learn the language by clicking the buttons above. * * All examples can be edited and inspected by builtin IDE features. */ class Main { /** This main function serves as an entry point. */ function main(): unit = Process.println("Hello World!") }