mirror of
https://github.com/tweag/nickel.git
synced 2024-11-10 19:09:08 +03:00
5d1b6a840a
Fix typos
535 B
535 B
Polymorphism
This example shows the usage of (statically typed) polymorphism in Nickel
through forall
. Polymorphic functions are the ones operating on generic values.
Polymorphic types can be nested in Nickel, although it is rarely needed. Note
that they must always be written explicitly: the typechecker never infers
polymorphic types for you.
Run
$ nickel -f polymorphism.ncl
Playground
Try to swap some type variables, or to mess with the definition of the functions to see the program failing to typecheck.