add quicklisp installation

This commit is contained in:
Dan Ballard 2016-07-20 17:06:56 -07:00
parent 8febe6e602
commit 405e26a856
1 changed files with 6 additions and 0 deletions

View File

@ -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. 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: ## ## Example: ##
CL-PACK> (pack "VgA*c*" #x41424344 161.99 " a string " 69 70 71) CL-PACK> (pack "VgA*c*" #x41424344 161.99 " a string " 69 70 71)