mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-06 02:40:26 -08:00
examples: don't intern symbols in asdf-with-deps
This commit is contained in:
parent
d18708ff4c
commit
5eb8475be5
3 changed files with 6 additions and 6 deletions
|
|
@ -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")))
|
||||
|
|
|
|||
|
|
@ -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)))
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
(in-package :cl-user)
|
||||
|
||||
(defpackage :example
|
||||
(:use :cl)
|
||||
(:export :test-function))
|
||||
(defpackage #:example
|
||||
(:use #:cl)
|
||||
(:export #:test-function))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue