[FEATURE] Else if/elif implementation
tmob03 opened this issue · 1 comments
tmob03 commented
Functionally, it would be the same as else with an if inside that else block like shown below. What this does it make long bits of if else chains much easier to write, and easier to read as it won't take up as much space.
if {
} else {
if {
}
}
ArgosOfIthica commented
Completed and merged with the macro branch