masscry / deci.vm

deci.vm - simple IEC61131-3 ST like-ish programming language interpreter
MIT License
15 stars 1 forks source link

"Case" statement #3

Open masscry opened 5 years ago

masscry commented 5 years ago

Selection statement.

case a of 1: do_foo; 2: do_bar; esle: do_foobar; end_case;