Discussion about Template Haskell
template-haskell.haskell.org
(
List home) (
Recent threads) (
40 other Haskell lists)
Subscription Options
- RSS or Atom: Read-only subscription using a browser or aggregator. This is the recommended way if you don't need to send messages to the list. You can learn more about feed syndication and clients here.
- Conventional: All messages are delivered to your mail address, and you can reply. To subscribe, send an email to the list's subscribe address with "subscribe" in the subject line, or visit the list's homepage here.
- Low traffic list: less than 3 messages per day
- This list contains about 753 messages, beginning Jan 2003
- 0 messages added yesterday
Discussion about Template Haskell
January 2003
(Simon Peyton-Jones) — 104186009606 Jan 2003
A test message to the TH list Simon...
(Sean Seefried) — 104191339807 Jan 2003
I read Simon's reply to Brian Kellar. Brian attempted to compile the following program and got a segmentation faultI attempted to compile the same...
(Simon Peyton-Jones) — 104193339507 Jan 2003
| I attempted to compile the same program using the snapshot from the 5thof | Linux though (Debian). My error message was I think this is an...
(Sean Seefried) — 104226693111 Jan 2003
I compiled the following program with ghc-5.05.20030109 -- import Language.Haskell.THSyntax main = putStrLn (show $(lift ('a', 'b'))) ...
(Simon Peyton-Jones) — 104245767613 Jan 2003
Thanks for the bug report. Yes the template-haskell mailing list should work. I'm ccing it.Well, the error message is appalling, and I'll impr...
(Simon Peyton-Jones) — 104245792613 Jan 2003
| Would it be possible to write a function "showFun" such that one couldThat's right. In an earlier posting I explained why I have ...
(Alain Cremieux) — 104301531319 Jan 2003
Hi, I'm beginning to work with TH. I'm sincerely finding the whole thing extraordinary, using (nearly) plain Haskell to write Haskell macros. ...
(Sean Seefried) — 104304050620 Jan 2003
I've noticed a subtle bug with TH. It took me some time to realise what was happening. First I will present my source files. --- [Splices.hs] modu...
(Simon Peyton-Jones) — 104307936920 Jan 2003
If you start to use TH for something real, I'd be fascinated to know some details. Future developments will be driven largely by applications, so ...
(Simon Peyton-Jones) — 104313785521 Jan 2003
No, declaration brackets are there already! Remember, though, that you can only splice in a separate module. So in:This isn't quite right. For a s...
(Simon Peyton-Jones) — 104325350522 Jan 2003
Excellent point. I know exactly what is happening and am fixing it as we speak Swhat...
(Sean Seefried) — 104329218923 Jan 2003
You are probably already aware of this but a declaration such as d1 = [d| id :: a -> a id x = x |] cannot be reified as of yet because th...
(Alain Cremieux) — 104373620928 Jan 2003*
Hi, I'm trying to code the exemples of "Template Meta-Programming" for Haskell. Since there are differences in the implementation, I...