fancy error printing done

This commit is contained in:
alexander.nutz
2024-03-29 12:21:09 +01:00
parent 355289716b
commit 19414c084c
12 changed files with 439 additions and 31 deletions

View File

@@ -7,6 +7,12 @@ class MutMultiLineString(
// TODO: wrap at \n
override fun equals(other: Any?): Boolean =
lines == other
override fun hashCode(): Int =
lines.hashCode()
/** if out of bounds, extends with @see fill */
operator fun get(row: Int, col: Int): Char {
if (row >= lines.size) {