pat1   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/core/pattern.xtm

Implementation

;; literal match
(define pat1 (match '(a (b c) d)))
(println 'pat1: (pat1 '(a (b c) d))) ;; NIL is a successful match with no named variables present


Back to Index

Similar Entries