Examples
Learn by reading real projects. Each example is complete, runnable, and opens in the playground with one click.
123456fonction calculer(a, op, b):
si op == "+": retourner a + b
si op == "*": retourner a * b
retourner nul
afficher(calculer(7, "*", 6))42
Available projects: calculator, todo list, school management, bank, weather and chat. Open one to explore and edit it.