refactor: Herstructurering
This commit is contained in:
parent
1acd1cfb67
commit
e3c84e1761
33 changed files with 290 additions and 178 deletions
9
src/prolog/ast/terms/Term.kt
Normal file
9
src/prolog/ast/terms/Term.kt
Normal file
|
@ -0,0 +1,9 @@
|
|||
package prolog.ast.terms
|
||||
|
||||
/**
|
||||
* Value in Prolog.
|
||||
*
|
||||
* A [Term] is either a [Variable], [Atom], integer, float or [CompoundTerm].
|
||||
* In addition, SWI-Prolog also defines the type string.
|
||||
*/
|
||||
interface Term : Comparable<Term>
|
Reference in a new issue