On this page
Hello World
As tradition demands, let’s start by printing “Hello World!” to the standard output 🚀
Create a file named
main.minewith the following code:fn main() { @printn("Hello World!") }Build and run the program:
mine run main.mine # Output Hello World!
Congratulations! You’ve just written and executed your first Mine program 🎉