feat: add native_lisp_function macro

- refactor project layout to use child crates
  - lispers-core: parser and evaluator
  - lispers-macro: proc macros
This commit is contained in:
2025-01-04 20:12:11 +01:00
parent 9179f06132
commit 3e11142361
21 changed files with 243 additions and 72 deletions

7
lispers-core/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "lispers-core"
version = "0.1.0"
edition = "2021"
[dependencies]
as-any = {workspace = true}