up vote 2 down vote favorite
share [g+] share [fb]

I'm trying to build a small language with similar syntax and grammatical structure to Java, with List Comprehension and Lambda Functions and such (already made).

What I'm trying to do now is instead of having it do eager evaluation, I want to make this language lazily-evaluate expressions. I'm not entirely sure how to go about it, because I don't have a clear idea of how to do partial evaluation.

I've done a lot of googling and come up with no answer, so I was wondering if anyone here had a good reference on this.

Any takers?

link|improve this question
Do you want to add the lazily evaluated lambda expressions to an imperative language, or just write a lazy language? – finrod Nov 8 '09 at 0:22
I want to add lazy evaluation to all forms of function passing and list comprehension. H-- allows for higher-order functions and thus lambda expressions and list comprehension with generators. – Matthiasak Nov 10 '09 at 3:01
Only it is evaluated eagerly. – Matthiasak Nov 10 '09 at 3:02
feedback

2 Answers

up vote 1 down vote accepted

This page from the Haskell Wikibook might be a good starting point.

link|improve this answer
Thanks! I think this will help me find what I'm looking for. – Matthiasak Nov 8 '09 at 0:19
feedback

The paper over designing/developing functional programming languages bij Simon Peyton Jones here might be useful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.