RosettaCodeData/Task/Conditional-structures/Dao/conditional-structures-1.dao

9 lines
143 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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' )
}