15 Nov
2009
15 Nov
'09
12:19 a.m.
On Sat, 14 Nov 2009, Henning Thielemann wrote:
For those people who want to use the 'transformers' package on JHC I have made a patch: http://code.haskell.org/~thielema/transformers-jhc.patch
now also as attachment for the record
I hesitate to push this to the 'transformers' main branch, since it contains only several syntactic replacements like:
do ~(a,b) <- act
replaced by
do ab <- act let (a,b) = ab