If I have this enum ```enum class Currency(val sig...
# getting-started
v
If I have this enum
Copy code
enum class Currency(val sign: String) {
    USD("$"),
    GBP("£"),
    THB("฿")
}
I can use it by
Copy code
val currency = Currency.USD
    println(currency.sign)  // print '$'
But what if I want to have a custom enum, how to create something like
Currency.customSign("*")