From 405e26a856702a1c3f7dc59907f8b89cda737196 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Wed, 20 Jul 2016 17:06:56 -0700 Subject: [PATCH] add quicklisp installation --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f73ead8..f6cbf6d 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,12 @@ The purpose of cl-pack is to take native Lisp data like numbers, floats, and str cl-pack has nearly full support for all features offered by Perl's pack. It boasts full support for most data types and formating rules from numbers and string to formating rules and grouping and templates. cl-pack also supports endian safe floats as outlined by ruby. cl-pack is supports ASDF so as to make it easy to integrate into your existing system. +## Instalation ## + +cl-pack is available in [QuickLisp](https://www.quicklisp.org/beta/) + + CL-PACK> (ql:quickload "cl-pack") + ## Example: ## CL-PACK> (pack "VgA*c*" #x41424344 161.99 " a string " 69 70 71)