RosettaCodeData/Task/Logical-operations/Harbour/logical-operations.harbour
2016-12-05 23:44:36 +01: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