6502-opcodes/firepower-core/src/main/scala/com/htmlism/firepower/core/Loadable.scala
2022-12-04 18:36:11 -05:00

10 lines
173 B
Scala

package com.htmlism.firepower.core
trait Loadable[A]:
def show(x: A): String
object Loadable:
given Loadable[Int] with
def show(x: Int): String =
x.toString