Apitax/Scriptax

Add switch case but without break

ShawnClake opened this issue · 1 comments

switch(someVar)
{
case(==0) {
// do some things
}

case(>=1) {
// do other things
}

default {
// do things if none of the others triggered
}
}

grammar added, not implemented