dreixel / syb

Scrap Your Boilerplate generic programming library in Haskell
http://www.cs.uu.nl/wiki/GenericProgramming/SYB
Other
44 stars 23 forks source link

gread . gshow fails with negative numbers #13

Open jacereda opened 8 years ago

jacereda commented 8 years ago
> gread $ gshow (42::Int) :: [(Int,String)]
[(42,"")]
> gread $ gshow ((-42)::Int) :: [(Int,String)]
[]