From: Dave Tucker (dbtucker at cs.uri.edu) Date: Sun Sep 25 16:49:30 EDT 2005 |
|
Using the PLAI - Advanced Student language, the following program: (require (lib "match.ss")) (match '(1 2) [`(,a ,b) (+ a b)]) gives the error: match: no matching clause for (list 1 2): (plt:match (quote (1 2)) ((quasiquote ((unquote a) (unquote b))) (+ a b))) Under other languages, the program correctly produces 3. Any idea what's wrong? Thanks. Dave
Posted on the users mailing list. |
|