RosettaCodeData/Task/Conditional-structures/Dao/conditional-structures-1.dao
2023-07-01 13:44:08 -04: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' )
}