$put_perv_real = "/home/www/dvakompa-ru/dopol/"; ?>
Игра в стиле roguelike, написанная на Лиспе. Вы можете найти это здесь.
A roguelike game written in Lisp. You can find it here.
In order to play this game on my Raspberry Pi, I had to install Clozure Common Lisp as explained there. I also installed Quicklisp as explained on the same page, and created the load-quicklisp function (also explained on the same page). Then I had to go in the source directory of the game and type:
/home/pi/lisp/armcl > (load-quicklisp) > (ql:quickload "md5") > (ql:quickload "trivial-gray-streams") > (ql:quickload "cffi") > (load #p"curses.lisp") > (load #p"r2.lisp") > (in-package :r2) > (start-game)