I'm learning Haskell. I see an author uses some mathematic unicode chars in the code here (∀
for example). I try use it too, for example:
(∀) :: (a -> b) -> [a] -> [b]
f ∀ [] = []
f ∀ (x:xs) = f x : f ∀ xs
ghci
loads this sucessfully, but I can't call this function... When I try paste the ∀
symbol into ghci
console from the clipboard, nothing happens (Windows 7, Lucida console font).
It is very convenient - to use mathematic symbols (in my opinion). How can I use it in the ghci
?