Home

Awesome

multifunge interpreter

A funge is a programming language.

It looks like this:

>v
^<

Which means:

int main(argc, char **argv)
{
	for(;;;)
		;
}

Or this:

25*"!dlroW ,olleH">:#,_@

Which means:

#include <stdio.h>
int main()
{
	printf("Hello, World!\n");
}

This project includes a very fast interpreter capable of executing these programs. Future work might include building a compiler as well!