diff options
author | elioat <elioat@tilde.institute> | 2025-01-19 19:17:58 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2025-01-19 19:17:58 -0500 |
commit | 750a35e4fb732a91548f967f25ed12251a111bc9 (patch) | |
tree | a37218e5cddc603e9776db4dfe9ebf2ee50dcb52 | |
parent | ac094e34310d6f8c1785c1b13bd51dafe2f0d545 (diff) | |
download | tour-750a35e4fb732a91548f967f25ed12251a111bc9.tar.gz |
*
-rw-r--r-- | awk/scheme/scheme/TODO.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/awk/scheme/scheme/TODO.md b/awk/scheme/scheme/TODO.md new file mode 100644 index 0000000..52218a8 --- /dev/null +++ b/awk/scheme/scheme/TODO.md @@ -0,0 +1,19 @@ +# Limitations +Current implementation does not support: + +- Variables or definition +- Functions or lambda expressions +- Control structures (if, cond) +- Quote or quasiquote +- String data type +- Input/output operations +- Standard library functions + +# Future Enhancements +Possible additions could include: + +- Let expressions for local bindings +- Function definitions +- Conditional expressions +- More numeric operations +- String support |