Common Lisp The Language 2ed #4 - Covers Chp 5 - Program Structure

Поділитися
Вставка
  • Опубліковано 11 вер 2024

КОМЕНТАРІ • 3

  • @user-zx3vp8mw7d
    @user-zx3vp8mw7d Рік тому

    I am trying to learn Common Lisp.
    Which IDE are you using? What is recommended for beginner? I am looking for IDE with function popup help..

    • @DavidBotton
      @DavidBotton  Рік тому +2

      I am using the CLOG builder. The instructions on the learn page will set up a Common Lisp environment including emacs (worth learning also).
      You can start the CLOG Builder with (ql:quickload :clog/tools) (clog-tools:clog-bulder)
      github.com/rabbibotton/clog/blob/main/LEARN.md
      In emacs and also in CLOG builder you use meta-. on a function and that will bring up the function source and it's doc string.

    • @user-zx3vp8mw7d
      @user-zx3vp8mw7d Рік тому

      @@DavidBotton Thanks