diff options
| author | Mistivia <i@mistivia.com> | 2025-06-22 23:32:56 +0800 |
|---|---|---|
| committer | Mistivia <i@mistivia.com> | 2025-06-22 23:33:12 +0800 |
| commit | 7563e4e5c3c346b8b11f7e66cdb11c81bcf58fa9 (patch) | |
| tree | 3d3ca32fdab4e1b21dc352d0bc98d3e8bedd452f /tests/symbol.lisp | |
| parent | daf22cff78522a1b5140fb7b02be3006ea4a2236 (diff) | |
add symbol functions
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)))) |
