1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-25 12:16:23 -07:00
Abacus/core/src/main/kotlin/org/nwapw/abacus/EvaluationResult.kt

6 lines
234 B
Kotlin
Raw Normal View History

package org.nwapw.abacus
2017-09-06 22:54:21 -07:00
import org.nwapw.abacus.context.MutableEvaluationContext
import org.nwapw.abacus.number.NumberInterface
2017-09-07 12:53:12 -07:00
data class EvaluationResult(val value: NumberInterface, val resultingContext: MutableEvaluationContext)