This repository has been archived on 2025-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025LogProg-project-GhentPr.../src/prolog/components/terms/Head.kt
2025-04-06 12:14:18 +02:00

10 lines
227 B
Kotlin

package prolog.components.terms
/**
* Part of a [Clause][prolog.components.expressions.Clause] before the [neck][prolog.terms.Neck] operator.
*/
interface Head : Term {
val functor: Functor
}
typealias Functor = String