Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ajzaff/multifunge

An interpreter for a minimal Funge language
https://github.com/ajzaff/multifunge

funge interpreter programming-language

Last synced: about 2 months ago
JSON representation

An interpreter for a minimal Funge language

Lists

README

        

# multifunge interpreter

A funge is a programming language.

It looks like this:

```befunge
>v
^<
```

Which means:

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

Or this:

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

Which means:

```c
#include
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!