aboutsummaryrefslogtreecommitdiffstats
path: root/test/match.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test/match.scm')
-rw-r--r--test/match.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/match.scm b/test/match.scm
index db19be1..0cf0efc 100644
--- a/test/match.scm
+++ b/test/match.scm
@@ -1,5 +1,5 @@
; A Shape is either a Circle (w/ radius) or a Rectangle (w/ width/height)
-(def-type (Shape)
+(define-type (Shape)
(Circle Float)
(Rectangle Float Float))