RosettaCodeData/Task/Logical-operations/PureBasic/logical-operations.purebasic

7 lines
100 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
Procedure LogicDebug(a,b)
Debug a And b
Debug a Or b
Debug Not a
Debug a XOr b
EndProcedure