Case classes, which are a type of immutable classes, are often used for modeling data in Scala. Case class instances are immutable by default, and their properties cannot be changed after creation.
xxxxxxxxxx
case class Person(name: String, age: Int)
val alice = Person("Alice", 30)
val olderAlice = alice.copy(age = 31)