Re: ANNOUNCE: GHC version 6.2

2003-12-27 Thread Wolfgang Thaller
   
The (Interactive) Glasgow Haskell Compiler -- version 6.2
   
A binary package for Mac OS X version 10.3 (Panther) is now available at

http://www.uni-graz.at/imawww/haskell/GHC.6.2.dmg

Includes OpenGL support.
It will probably not work on Mac OS X 10.2 (Jaguar).
I don't have a machine with 10.2 left, so I won't be able to release a 
package for 10.2.

Cheers,

Wolfgang

___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users


Re: GHC 6.2 breaks multiline string literals

2003-12-27 Thread Stefan Reich
Ferenc, thanks for your answer. It doesn't really solve my problem though...

1. Your method doesn't preserve the line-breaks within the resulting string.

2. Surrounding each line with special chars is actually what I want to 
avoid.

What I'm looking for is something similar to Perl's  and PHP's  
operator.

-Stefan

Ferenc Wagner wrote:

Stefan Reich [EMAIL PROTECTED] writes:


multilineLiteral = 
  line1
  line2


Use string gaps (see 2.6 in the Report):

multilineLiteral = \
\   line1\n\
\   line2
___
Glasgow-haskell-users mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-users