File: derived-function-type-casts.lisp

package info (click to toggle)
sbcl 2%3A2.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 52,008 kB
  • sloc: lisp: 535,135; ansic: 42,629; sh: 5,737; asm: 2,406; pascal: 717; makefile: 432; python: 56; cpp: 27
file content (7 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
(defun derived-function-type-casts-make-fun () (lambda ()))

(defun derived-function-type-casts ()
  (let ((a (derived-function-type-casts-make-fun))
        (b (derived-function-type-casts-make-fun)))
    (funcall a)
    (funcall b)))