As tradition demands, let’s start by printing “Hello World!” to the standard output 🚀


  1. Create a file named main.mine with the following code:

      fn main() {
        @printn("Hello World!")
    }
      
  2. Build and run the program:

      mine run main.mine
    
    # Output
    Hello World!
      

Congratulations! You’ve just written and executed your first Mine program 🎉