RosettaCodeData/Task/Logical-operations/Clipper/logical-operations.clipper

7 lines
142 B
Plaintext

Function Foo( a, b )
// a and b was defined as .F. (false) or .T. (true)
? a .AND. b
? a .OR. b
? .NOT. a, .NOT. b
Return Nil