Hello world
The first program to write is "Hello, world!". Here it is in Nara. Press the "Run" button to see the output.
CODE_PLAYGROUND
print("Hello, world!")
Nara syntax is C-like, however, statements do not require semicolons at the end. Instead, newlines are used to separate statements.
CODE_PLAYGROUND
print("Hello")
print("Bye")