Quickstart
The fastest way to start: open Baobab Studio, create a .bao file, write a function, then run it — no install required.
12345# main.bao
fonction saluer(nom):
afficher("Bonjour " + nom)
saluer("Aminata")Bonjour Aminata
Run it with the Run button (or bao run main.bao locally). The integrated terminal shows the output; if your code reads input with lire(...), you can type it right there.