[changelog]

This commit is contained in:
2024-01-02 16:08:29 +05:30
parent c01c04699a
commit f094584dee

View File

@@ -12,10 +12,20 @@ A simple language server based VSCode Extension for the ~~Branflakes~~ BF langua
- [X] Execution
- [ ] Timeout
### Execution
Use the command to execute the code.
Issue is, because BF is a *turing complete* language, there is no way to know if the program will terminate or not. Hence for now, the command may lead to infinite execution.
Additionally, all input is done before program execution (If the program requests for input that hasn't been provided, `zero` is fed to it).
If the program requires input, it will be requested as a prompt.
TODO: Implement a timeout.
### Changelog
#### 0.5.0
- Request input as required during execution
- Using array-based indexing. This implies that only positive indices upto 30k are supported.