7 lines
162 B
Text
7 lines
162 B
Text
a = 3
|
|
switch( a ){
|
|
case 0: io.writeln( 'case 0' )
|
|
case 1, 2: io.writeln( 'case 1,2' )
|
|
case 3, 4, 5: io.writeln( 'case 3,4,5' )
|
|
default: io.writeln( 'default' )
|
|
}
|