mehl-server is the first and only open source implementation of a mehl-server.
$ git clone https://github.com/disco-stu/mehl-server
$ cd mehl-server
$ make
gcc -c -Wall --pedantic -g mehl.c -o mehl.o
gcc -c -Wall --pedantic -g list.c -o list.o
gcc -c -Wall --pedantic -g parser.c -o parser.o
gcc -lpthread -g mehl.o list.o parser.o -o mehl-server
After building the server, starting the server is easy as:
$ ./mehl-server
To connect to your own instance of mehl-server you user e.g. telnet:
$ telnet localhost 6363
This project uses the MIT license.