vault backup: 2023-10-06 14:12:52

This commit is contained in:
2023-10-06 14:12:52 +02:00
parent ad06f2d7ae
commit e8e6e80444

View File

@ -61,3 +61,6 @@ let rec max_value list = match list with
let max_tail = max_value tl in
if hd > max_tail then hd else max_tail;;
```
## 1.6 - Bonus second
```Ocaml