Re: literate comments

2003-10-15 Thread ajb
G'day all. Quoting Steffen Mazanek <[EMAIL PROTECTED]>: > Would it make sense, to add a xml like code environment > as well, e.g., ...? It's hard to say. The problem is that some Haskell characters are also important for XML (e.g. <, &) and so you can't just cut and paste valid Haskell inside a

literate comments

2003-10-15 Thread Steffen Mazanek
Hello, in the Haskell report the latex code environment is mentioned: http://www.haskell.org/onlinereport/literate.html Would it make sense, to add a xml like code environment as well, e.g., ...? Ciao, Steffen ___ Haskell mailing list [EMAIL PROTECTED

Re: changed link

2003-10-15 Thread Wolfgang Jeltsch
Am Mittwoch, 15. Oktober 2003, 12:50 schrieb Christian Maeder: > Hi, > > on: > http://www.haskell.org/bookshelf/ > > the link for: Online Haskell Course by Ralf Hinze (in German). > > should be changed from: > http://www.informatik.uni-bonn.de/~ralf/teaching/HsKurs_toc.html > > to: > http://www.inf

changed link

2003-10-15 Thread Christian Maeder
Hi, on: http://www.haskell.org/bookshelf/ the link for: Online Haskell Course by Ralf Hinze (in German). should be changed from: http://www.informatik.uni-bonn.de/~ralf/teaching/HsKurs_toc.html to: http://www.informatik.uni-bonn.de/~ralf/teaching/Hskurs_toc.html At least my browser seems to be ca

Re: Calling an external command from a Haskell program

2003-10-15 Thread Graham Klyne
I think library module System, function system, may be what you want. (I've never used it myself.) There's a bit of discussion here: http://www.dcs.gla.ac.uk/mail-www/haskell/msg02441.html #g -- At 09:44 15/10/03 +0200, Salvador Lucas wrote: Dear all, I think this question is not new, but I am

Re: Calling an external command from a Haskell program

2003-10-15 Thread Alastair Reid
> I think this question is not new, but I am not able to > find the answer. How to proceed to execute an external > Linux command (e.g., 'ls') from a Haskell program? system("ls") system :: String -> IO ExitCode -- Alastair Reid www.haskell-consulting.com _

Calling an external command from a Haskell program

2003-10-15 Thread Salvador Lucas
Dear all, I think this question is not new, but I am not able to find the answer. How to proceed to execute an external Linux command (e.g., 'ls') from a Haskell program? Thanks in advance, Salvador. ___ Haskell mailing list [EMAIL PROTECTED] http://ww