Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
8
Task/Metaprogramming/Common-Lisp/metaprogramming-4.lisp
Normal file
8
Task/Metaprogramming/Common-Lisp/metaprogramming-4.lisp
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
;; The -> notation is not part of Lisp, it is used in examples indicate the output of a form.
|
||||
;;
|
||||
;;
|
||||
(comprehend 'list-monad (cons x y) (x '(1 2 3)) (y '(A B C)))
|
||||
|
||||
-> ((1 . A) (1 . B) (1 . C)
|
||||
(2 . A) (2 . B) (2 . C)
|
||||
(3 . A) (3 . B) (3 . C))
|
||||
Loading…
Add table
Add a link
Reference in a new issue