vote up 3 vote down star
2

I'm interested in studying how an interpreter works, and lolcode makes me laugh, so… What's the best Open Source lolcode interpeter? Bonus points for providing a decent REPL.

flag

80% accept rate

4 Answers

vote up 2 vote down check

Depends on your favorite/"best-to-understand" language - for example, here's a Java and a Perl open source interpreter.

link|flag
vote up 0 vote down

I know it's not an interpreter, but I've used the Lolcode.net implementation, and it worked rather well for me. It follows the specifications relatively well, except for a few things (like arrays).

Also, I got it to run in linux using mono, if linux compatibility is important to you.

link|flag
vote up 1 vote down

Certainly without a definition of "best", there's little way to answer this question with any certainty. I'm writing an LOLCODE interpreter (http://pgfoundry.org/projects/pllolcode/) to support LOLCODE as a language for writing stored procedures in the PostgreSQL database. (Why, you ask? Because I wanted to learn how.) This interpreter is written in C, and uses Bison and Flex for parsing. These seem to be "best" choices in this case because that's what PostgreSQL itself uses. If you're more familiar with, say, Perl, the Perl-based interpreter is probably better.

link|flag
vote up 2 vote down

While maybe not the "best" one, I think it's pretty cool that someone from DLR team actually created a LOLCode interpreter based on the DLR, with full access to the .NET Framework.

link|flag

Your Answer

Get an OpenID
or

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