RosettaCodeData/Task/Logical-operations/Harbour/logical-operations.harbour
2023-07-01 13:44:08 -04:00

6 lines
130 B
Text

PROCEDURE Foo( a, b )
// a and b was defined as .F. (false) or .T. (true)
? a .AND. b
? a .OR. b
? ! a, ! b
RETURN