Outils pour utilisateurs

Outils du site


tech:notes_ocaml

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
tech:notes_ocaml [2025/03/28 16:53] Jean-Baptistetech:notes_ocaml [2025/05/22 15:22] (Version actuelle) Jean-Baptiste
Ligne 1: Ligne 1:
 +<!DOCTYPE markdown>
 +{{tag>Brouillon Prog}}
 +
 +# Notes ocaml
 +
 +Voir :
 +* https://linuxfr.org/news/apprendre-la-programmation-fonctionnelle-avec-le-mooc-ocaml
 +
 +Exemple de factorielle 
 +
 +~~~ocaml
 +let rec fact n = if (n=0) then 1 else n*(fact(n-1));;
 +~~~
 +
  

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki