diff options
Diffstat (limited to 'test/struct.lisp')
| -rw-r--r-- | test/struct.lisp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/struct.lisp b/test/struct.lisp new file mode 100644 index 0000000..9e35654 --- /dev/null +++ b/test/struct.lisp @@ -0,0 +1,11 @@ +(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)) |
