examples: don't intern symbols in asdf-with-deps

This commit is contained in:
Daniel Kochmanski 2017-07-22 12:29:34 +02:00
parent d18708ff4c
commit 5eb8475be5
3 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
(defsystem :example-with-dep
(defsystem #:example-with-dep
:serial t
:depends-on (:alexandria)
:depends-on (#:alexandria)
:components ((:file "package")
(:file "example")))

View file

@ -1,4 +1,4 @@
(in-package :example)
(in-package #:example)
(defun test-function (n)
(format t "Factorial of ~a is: ~a~%" n (alexandria:factorial n)))

View file

@ -1,5 +1,5 @@
(in-package :cl-user)
(defpackage :example
(:use :cl)
(:export :test-function))
(defpackage #:example
(:use #:cl)
(:export #:test-function))