[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
STRING and `
- To: (BUG LISP) at MIT-MC
- Subject: STRING and `
- From: JGA at MIT-MC (John G. Aspinall)
- Date: Mon, 1 Dec 80 20:25:00 GMT
- Cc: JGA at MIT-MC
- Original-date: 1 DEC 1980 1525-EST
;; In a bare lisp ....
(load '((lisp) string))
`(foo ,"bar")
(FOO "bar")
`(foo "bar")
(FOO T)
;; really !
;;; without the string package loaded you get the usual
`(foo "bar") --> (FOO |bar|)
`(foo ,"bar") --> (FOO |bar|)
John.