RosettaCodeData/Task/Logical-operations/PureBasic/logical-operations.purebasic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
100 B
Text

Procedure LogicDebug(a,b)
Debug a And b
Debug a Or b
Debug Not a
Debug a XOr b
EndProcedure