I've read Chapter 16 of Real World Haskell on Parsec . The examples in this chapter show how to use Parsec to extract data structures out of strings.
I'm wondering how one would go about applying Parsec to create an imperative-style DSL, one that would take input written in a DSL and translate it into Haskell, SQL, or Ruby code that can be executed.
I'm sorry if this is a general question, but any leads or examples would be appreciated.