Examples

Learn by reading real projects. Each example is complete, runnable, and opens in the playground with one click.

1
2
3
4
5
6
fonction 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.