/*  Notes on Scala for Java Programmers
    Scala MoreDates Program

12345678901234567890123456789012345678901234567890123456789012345678901234567890

2019-01-28: Reconstructed from ScalaForJava.md notes source file
2022-02-25: Updated to be compatible with Scala 3 (procedures)

*/

import java.util.{Date, Locale}
import java.text.DateFormat
import java.text.DateFormat._

object FrenchDate {
    def main(args: Array[String]): Unit = {
        val now = new Date
        val df = getDateInstance(LONG, Locale.FRANCE)
        println(df format now)
    }
}

