Title here
Summary here
Our first program will print the classic “hello world” message. Here’s the full source code.
To run the program, compile the code into an executable using gnatmake
.
Sometimes we’ll want to build our programs into binaries. In Ada, the gnatmake
command handles both compilation and linking.
First, compile the code:
We can then execute the built binary directly.
Now that we can run and build basic Ada programs, let’s learn more about the language.