Add LICENSE
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 14 Mar 2017 13:33:53 +0000 |
parents |
c6a3ab353556 |
children |
555f4470bf64 |
(asdf:defsystem :cl-pcg
:description "A bare-bones Permuted Congruential Generator implementation in pure Common Lisp."
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT"
:version "1.0.0"
:depends-on (#+sbcl :sb-rotate-byte)
:serial t
:components ((:module "vendor" :serial t
:components ((:file "quickutils-package")
(:file "quickutils")))
(:file "package")
(:module "src" :serial t
:components ((:file "pcg")))))