Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Logical-operations/PureBasic/logical-operations.basic
Normal file
10
Task/Logical-operations/PureBasic/logical-operations.basic
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
Procedure LogicDebug(a,b)
|
||||
Debug a & b ;And
|
||||
Debug a | b ;Or
|
||||
Debug ~a ;Not
|
||||
Debug a ! b ;XOr
|
||||
EndProcedure
|
||||
|
||||
logicDebug(#True, #True)
|
||||
logicDebug(#True, #False)
|
||||
logicDebug(#False, #False)
|
||||
Loading…
Add table
Add a link
Reference in a new issue