diff options
Diffstat (limited to 'test/quote.scm')
-rw-r--r-- | test/quote.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/quote.scm b/test/quote.scm index 4895d2e..817f812 100644 --- a/test/quote.scm +++ b/test/quote.scm @@ -1,10 +1,9 @@ -(def-type (Expr) +(define-type (Expr) (Symbol Symbol) (Int Int) (List Expr Expr) (Empty)) - (define list (quote (2 a b c))) (define (len l) |