RosettaCodeData/Task/Conditional-structures/PureBasic/conditional-structures-1.purebasic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
84 B
Text

If a = 0
Debug "a = 0"
ElseIf a > 0
Debug "a > 0"
Else
Debug "a < 0"
EndIf