Apitax / Scriptax

Scriptax is a general purpose, automation first language used to quickly script together automation.
GNU General Public License v3.0
2 stars 0 forks source link

Add switch case but without break #21

Closed ShawnClake closed 5 years ago

ShawnClake commented 5 years ago

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

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

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

ShawnClake commented 5 years ago

grammar added, not implemented