1
1
mirror of https://github.com/tweag/nickel.git synced 2024-10-05 07:37:09 +03:00

Fix example

This commit is contained in:
Yann Hamdaoui 2021-12-14 15:53:35 +01:00
parent 7fcc8a741a
commit d04a8580df

View File

@ -112,9 +112,7 @@ Let us try on the filter example. We want the call to be inside the statically
typechecked block. The easiest way is to add an annotation at the top-level:
```nickel
(let filter
: (Num -> Bool) -> List Num -> List Num
= fun pred l =>
(let filter = fun pred l =>
lists.foldl (fun acc x => if pred x then acc @ [x] else acc) [] l in
filter (fun x => if x % 2 == 0 then x else null) [1,2,3,4,5,6]) : List Num
```