;;; -*- Mode:LISP; Base:10; Readtable:ZL -*- (defun foo (a) (bar a)) (defconstant *c* 'five) (defvar *v*) (defconst *cc* 'seven) (defun foo-1 (*v*) (bar *cc*)) (defun foo-2 (*v* &optional (b *v*)) (bar *v*)) (defun yuck (x) (+ x 'b)) (defun parallel-bind-test-1 () (let ((a 3) (b 4)) (print (list a b)))) (defun parallel-bind-test-2 () (let ((a 7)) (print a) (let ((a 3) (b a) (c 5)) (declare (special b)) (print c) (print (list a b c))))) ;;; This has the potential to lose open frames from the pool if we aren't ;;; careful to return them when returning out from where they were started. (defun return-test (flag) (block foo (+ 3 (if flag (return-from foo 'lose) 2))))