8 lines
143 B
Text
8 lines
143 B
Text
a = 3
|
|
if( a == 1 ){
|
|
io.writeln( 'a == 1' )
|
|
}else if( a== 3 ){
|
|
io.writeln( 'a == 3' )
|
|
}else{
|
|
io.writeln( 'a is neither 1 nor 3' )
|
|
}
|