10 lines
No EOL
318 B
Kotlin
10 lines
No EOL
318 B
Kotlin
package prolog.builtins2.control
|
|
|
|
import prolog.components.terms.Atom
|
|
import prolog.components.Operand
|
|
import prolog.components.Operator
|
|
|
|
/**
|
|
* Conjunction (and). True if both Goal1 and Goal2 are true.
|
|
*/
|
|
class Conjunction(leftOperand: Operand, rightOperand: Operand) : Operator(Atom(","), leftOperand, rightOperand) |