How to add .asd systems in lisp / Windows7?

1

So, guys, here's what I'm trying to do: I'm trying to run a code that interprets BRAINFUCK written in LISP, so I found this git:

link

It seems to be very user friendly and the best so far (the others I could not run, I guess for some bullshit or I do not understand the code).

I'm using the Allegro 10.0 platform, but I have other lisp compilers installed. The joy already has ASDF in version 3.16, but when I try to install the system:

(asdf: load-system: brain)

It simply does not install, it says that the component was not found. Doing some research found that windows does not create symbolic links (nor do I know exactly what it is), and that this makes it difficult, I really need to install this .adb, please help me

    
asked by anonymous 29.02.2016 / 08:42

1 answer

0

You need to use (require :asdf) in allegro, and you also need to put LispFuck in the "ASDF load directory". Then you get (asdf:load-system :brain) .

This program is created by me.

    
08.03.2016 / 02:04