Go to the first, previous, next, last section, table of contents.


Examples of for-as-package subclause

 (let ((*package* (make-package "TEST-PACKAGE-1")))
   ;; For effect, intern some symbols
   (read-from-string "(THIS IS A TEST)")
   (export (intern "THIS"))
   (loop for x being each present-symbol of *package*
          do (print x)))
 |>  A 
 |>  TEST 
 |>  THIS
 |>  IS 
=>  NIL


Go to the first, previous, next, last section, table of contents.