I'm a Kotlin/Java developer mainly focusing on Minecraft mods.
import java.time.LocalDate
import java.time.Month
class Syz66 : Person(
name = "Sophia",
age = 20,
birthday = LocalDate.of(2004, Month.MAY, 21),
occupation = listOf("Education", "Coding", "Being silly")
) {
val discord: String = "trans.flag"
fun location(): String {
return "Columbus, OH, USA"
}
fun nextLocation(): String {
return "Portland, OR, USA"
}
}