Getting Started

You can start without memorizing complex syntax. You only need a .dino file.

Your first program#

Create a file (for example hello.dino) with this:

print "Welcome to DinoCode 🦖"
Try it

In this documentation you can run code examples with the icon without installing anything.

Local installation#

Option 1: DinoIDE (Windows)#

Environment with editor, syntax highlighting, and integrated execution.

Download from DinoIDE on GitHub .

Option 2: Command line#

Download the compiler from dinocode-lang/dinocode .

Then, in the terminal:

./dinocode your_file.dino
Main function

If later you need an entry point or console arguments, check The main function. It’s optional in most scripts.