corth-lang / Corth

A self-hosted stack based language like Forth
MIT License
8 stars 1 forks source link

Macro and stack queues should be changed to vectors #9

Closed HuseyinSimsek7904 closed 11 months ago

HuseyinSimsek7904 commented 1 year ago

Using queues to store macros and the static stack is extremely problematic, as the queue size is static and adding new items will cause overflows. To solve that problem, the queues should be changed to vectors.

HuseyinSimsek7904 commented 11 months ago

Did that a long time ago, forgot that there was an issue associated with it.