summaryrefslogtreecommitdiff
path: root/struct.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'struct.lisp')
-rw-r--r--struct.lisp11
1 files changed, 0 insertions, 11 deletions
diff --git a/struct.lisp b/struct.lisp
deleted file mode 100644
index 9e35654..0000000
--- a/struct.lisp
+++ /dev/null
@@ -1,11 +0,0 @@
-(defstruct! foo
- x
- y
- z)
-
-(setq! x (foo/new :y 10 :x 5 :z 111))
-(print! x)
-(print! (foo/get-y x))
-(foo/set-y! x 42)
-(print! (foo/get-y x))
-(print! (foo/get-z x))