vote up 2 vote down star

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?

flag
Do you want to add the lazily evaluated lambda expressions to an imperative language, or just write a lazy language? – finrod Nov 8 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 at 3:01
Only it is evaluated eagerly. – Matthiasak Nov 10 at 3:02

2 Answers

vote up 1 vote down check

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

link|flag
Thanks! I think this will help me find what I'm looking for. – Matthiasak Nov 8 at 0:19
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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