import java.time.LocalDate
object ReadLocalDateProgram {
// -------------------------------------------------------------
// Function that reads the current system LocalDate.
// The function returns the LocalDate value.
// -------------------------------------------------------------
def readLocalDate(): LocalDate = {
// LocalDate.now() retrieves today's date from the system clock.
LocalDate.now()
}
// -------------------------------------------------------------
// Main program
// -------------------------------------------------------------
def main(args: Array[String]): Unit = {
// Read the LocalDate using our function
val date = readLocalDate()
// Print the result
println(s"Read LocalDate: $date")
}
}
/*
run:
Read LocalDate: 2026-09-14
*/