mp2i-info/td3/td3.ml
2025-12-04 19:49:12 +01:00

7 lines
99 B
OCaml

let rec ligne n s = if n > 0 then
(print_string s;
ligne (n-1) s)
;;
let () = ligne 5 "*";;