RosettaCodeData/Task/Conditional-structures/Dao/conditional-structures-1.dao
2015-02-20 00:35:01 -05:00

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' )
}