Added missing list page

This commit is contained in:
Kyler Olsen 2025-12-29 23:42:58 -07:00
parent 9f361b4b04
commit c7f5dcd4c9
2 changed files with 18 additions and 0 deletions

View File

@ -41,6 +41,7 @@ A statically-typed, stack-based language with pure postfix notation.
- [Git Repo](https://git.purplecello.org/KylerOlsen/YREA-SLS) - [Git Repo](https://git.purplecello.org/KylerOlsen/YREA-SLS)
- [Contribution Guide](./contributing.html) - [Contribution Guide](./contributing.html)
- [Missing Features](./missing_features.html) - [Missing Features](./missing_features.html)
- [Missing List](./missing.html)
- [Assignment Details](./se_3250_assignment_details.html) - [Assignment Details](./se_3250_assignment_details.html)
- [Changes](./changes.html) - [Changes](./changes.html)
- [Full Specification](./stack_lang_spec.html) - [Full Specification](./stack_lang_spec.html)

17
docs/missing.md Normal file
View File

@ -0,0 +1,17 @@
---
Title: Missing List
Prev:
Next:
---
## Missing List
### Operators
- `and` (Logical AND)
- `exp` (e^x)
- `recp` (1/x)
- `dec` (10^x)
- `root` (nth root)
- `neg` ({0 swap -} or {-1 *})
- `two` (Two's Complement)