refactor: Herstructurering
This commit is contained in:
parent
1acd1cfb67
commit
e3c84e1761
33 changed files with 290 additions and 178 deletions
6
src/prolog/ast/logic/Rule.kt
Normal file
6
src/prolog/ast/logic/Rule.kt
Normal file
|
@ -0,0 +1,6 @@
|
|||
package prolog.ast.logic
|
||||
|
||||
import prolog.ast.terms.Body
|
||||
import prolog.ast.terms.Head
|
||||
|
||||
class Rule(head: Head, body: Body) : Clause(head, body)
|
Reference in a new issue