Zoltan Demant
07/26/2023, 11:21 AM@JvmInline
value class Token(
private val value: String,
) {
constructor() : this("1337") {
// **THIS**
println(value)
}
}
Riccardo Lippolis
07/26/2023, 11:24 AMZoltan Demant
07/26/2023, 11:25 AM