10 lines
155 B
Kotlin
Vendored
10 lines
155 B
Kotlin
Vendored
package com.example
|
|
|
|
import java.util.UUID
|
|
|
|
|
|
class ExampleClass {
|
|
override fun toString(): String {
|
|
return UUID.randomUUID().toString()
|
|
}
|
|
} |