This commit is contained in:
Oli Sturm
2025-05-08 14:17:31 +01:00
parent 768d01a37d
commit c9c1b53630
9 changed files with 143 additions and 16 deletions
+2 -1
View File
@@ -11,4 +11,5 @@ let rec listLength l =
// `match` call.
let rec listLength' = function
| [] -> 0
| _ :: xs -> 1 + (listLength' xs)
| _ :: xs -> 1 + (listLength' xs)