Title here
Summary here
Our first program will print the classic “hello world” message. Here’s the full source code.
To run the program, put the code in hello-world.chpl
and use the chpl
compiler.
Sometimes we’ll want to build our programs into binaries that can be executed directly. Chapel does this by default when you compile the code.
Compile the code and produce an executable file:
We can then execute the built binary directly.
Now that we can run and build basic Chapel programs, let’s learn more about the language.