Hello World

The code for a simple hello world program is as follows:

echo "Hello World"

Save this text as helloworld.nim. To compile and execute the program, the following command should be run

$ nim c -r --verbosity:0 helloworld.nim
Hello World

The command has several elements: