mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2025-12-15 15:21:03 -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
|
:serial t
|
||||||
:depends-on (:alexandria)
|
:depends-on (#:alexandria)
|
||||||
:components ((:file "package")
|
:components ((:file "package")
|
||||||
(:file "example")))
|
(:file "example")))
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(in-package :example)
|
(in-package #:example)
|
||||||
|
|
||||||
(defun test-function (n)
|
(defun test-function (n)
|
||||||
(format t "Factorial of ~a is: ~a~%" n (alexandria:factorial n)))
|
(format t "Factorial of ~a is: ~a~%" n (alexandria:factorial n)))
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
(in-package :cl-user)
|
(in-package :cl-user)
|
||||||
|
|
||||||
(defpackage :example
|
(defpackage #:example
|
||||||
(:use :cl)
|
(:use #:cl)
|
||||||
(:export :test-function))
|
(:export #:test-function))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue