Checkpoint
This commit is contained in:
parent
39c3af4ba5
commit
da21d890fb
39 changed files with 1166 additions and 48 deletions
10
src/prolog/builtins2/control/Conjunction.kt
Normal file
10
src/prolog/builtins2/control/Conjunction.kt
Normal file
|
@ -0,0 +1,10 @@
|
|||
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)
|
Reference in a new issue