How to add . Asd systems in Lisp/Windows7?

Asked

Viewed 35 times

1

So guys, here’s the thing, I’m trying to run a code that interprets BRAINFUCK written in LISP, so I found this git:

https://github.com/equwal/LispFuck

it seems to be very friendly and the best so far (the others could not run, I think by some nonsense or not understand the code).

I’m using the Allegro 10.0 platform, but I have other Lisp compilers installed. Alegro already has the ASDF in version 3.16, but when I try to install the system:

(asdf:load-system :Brain)

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

1 answer

0


Need to use (require :asdf) in the Allegro, and also needs to put the LispFuck in the "ASDF load directory". Then (asdf:load-system :brain).

This program is created by me.

  • Thanks friend!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.