6 lines
142 B
Text
6 lines
142 B
Text
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
|