diff options
Diffstat (limited to 'tests/symbol.lisp')
| -rw-r--r-- | tests/symbol.lisp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/symbol.lisp b/tests/symbol.lisp new file mode 100644 index 0000000..f771272 --- /dev/null +++ b/tests/symbol.lisp @@ -0,0 +1,4 @@ +(assert (eq 'a (intern "a"))) +(assert (eq (intern "ab") (intern (concat "a" "b")))) +(assert (equal "abc" (symbol->string 'abc))) +(assert (not (eq (gensym) (gensym)))) |
