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/ast/arithmetic/Number.kt

10 lines
No EOL
238 B
Kotlin

package prolog.ast.arithmetic
interface Number: Expression {
val value: kotlin.Number
fun plus(other: Number): Number
fun minus(other: Number): Number
fun times(other: Number): Number
fun div(other: Number): Number
}