Implement elsif do

This commit is contained in:
2025-02-17 19:36:25 +01:00
parent 994b91e0e5
commit 39750f4656
8 changed files with 46 additions and 58 deletions

View File

@ -944,6 +944,10 @@ namespace boot
while_statement::~while_statement()
{
delete m_body;
for (const auto branch : branches)
{
delete branch;
}
}
const char *print_binary_operator(const binary_operator operation)