diff --git a/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt b/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt index 79cd0ce..cb3fe03 100644 --- a/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt +++ b/emotion-core/src/commonMain/kotlin/co/q64/emotion/core/lang/value/NullValue.kt @@ -5,10 +5,9 @@ import co.q64.emotion.core.value.NullType import co.q64.emotion.core.value.Value import co.q64.emotion.core.value.value -object NullValue : Value { +object NullValue : Value { override val type get() = NullType override val number = 0.rational() override fun compareTo(other: Value) = number.value().compareTo(other) override fun toString(): String = "" - -} \ No newline at end of file +}