Checkpoint
This commit is contained in:
parent
438af6c053
commit
6eca9dfcb7
25 changed files with 309 additions and 113 deletions
|
@ -2,12 +2,9 @@ package prolog.components.terms
|
|||
|
||||
/**
|
||||
* Part of a [Clause][prolog.components.expressions.Clause] before the [neck][prolog.terms.Neck] operator.
|
||||
*
|
||||
* @see [Atom]
|
||||
* @see [CompoundTerm]
|
||||
*/
|
||||
abstract class Head: Term {
|
||||
abstract val functor: Functor
|
||||
interface Head : Term {
|
||||
val functor: Functor
|
||||
}
|
||||
|
||||
typealias Functor = String
|
||||
|
|
Reference in a new issue