The dream quicklisp is coming!

Source: Internet
Author: User

Quicklisp
This is my dream tool: an extremely convenient lisp library management tool.

Quick lisp released a public beta version a week ago. It's a great deal to try today.

 

To put it simply, quicklisp is a library Installation tool similar to Apt-Get on Linux. You only need one command to install a library and fix the dependent library by yourself. More importantly, it maintains a library of more than 300 software packages.

 

The installation is simple. Download:

WgetHttp://beta.quicklisp.org/quicklisp.lisp

 

 

 

Load it in sbcl: (load "quicklisp. LISP ")

 

Installation:

 

(Quicklisp-Quickstart: Install)

Add to the sbcl Startup file:
(QL: add-to-init-file)

Install a Library:

(QL: quickload "vecto ")

--------------------------------

The following two macros are provided: loadlib and listlib, which allow you to conveniently use ASDF.

(Require 'asdf)
(Defmacro loadlib (name)
'(ASDF: OOS 'asdf: Load-op, name ))

(Defmacro listlib (name)
'(Do-external-symbols (S, name) (print s )))
(Defun load-modules (& rest modules)
(Dolist (M modules) (loadlib m )))
-----------------
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.