Can you guess Haskell’s type with the next shortest name (hint: three letters)?
Pedant note: actually, there’s another two-character type, which is ->, i.e. a -> b is (->) a b.
->
a -> b
(->) a b
There’s also ().
()
Yep. And IO, ST.
IO
ST
Nowadays, you might also consider *.
*
Pedant note: actually, there’s another two-character type, which is
->, i.e.a -> bis(->) a b.There’s also
().Yep. And
IO,ST.Nowadays, you might also consider
*.