#nodable
Let's create your first nodable program. Inside the nodable folder, create a file named welcome.nd and inside the file, copy this code:

int main()
{
    prints("Welcome!"); 
    return 0;
}

To run this program, first go into the nodable file in your terminal and follow the steps of the compilation guide above. Next, enter these commands into the terminal:


./nodable.native < welcome.nd > welcome.ll
llc -relocation-model=pic welcome.ll > welcome.s
cc -o welcome.exe welcome.s c_library.o -lm
./welcome.exe > welcome.out


You should now see a file called 'welcome.out' in the nodable folder. If you open welcome.out, you will see that your program printed the message: Welcome

Congratulations! You have just written your first nodable code.