aboutsummaryrefslogtreecommitdiffstats
path: root/test/quote.scm
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-27 18:18:54 +0000
committerDavid Robillard <d@drobilla.net>2012-12-27 18:18:54 +0000
commit0c09f8394149afdd7cca5908e08e2bb69971b50b (patch)
tree72fc51e58ed8b84f0cecfebb1cc9d3092aac9355 /test/quote.scm
parent01a458a33f3329a254206b6bbe858542d7634ca4 (diff)
downloadresp-0c09f8394149afdd7cca5908e08e2bb69971b50b.tar.gz
resp-0c09f8394149afdd7cca5908e08e2bb69971b50b.tar.bz2
resp-0c09f8394149afdd7cca5908e08e2bb69971b50b.zip
def-type => define-type
git-svn-id: http://svn.drobilla.net/resp/trunk@453 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'test/quote.scm')
-rw-r--r--test/quote.scm3
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)