ammonite.terminal
A small helper class to quickly define enumerations: extend this class in your companion object and define the items via val a, b, c = Item(...) passing in your enum class constructor in place of ....
val a, b, c = Item(...)
...
A small helper class to quickly define enumerations: extend this class in your companion object and define the items via
val a, b, c = Item(...)
passing in your enum class constructor in place of...
.