Scala 3 - A Quick Tour - Singapore Scala Programmers 2021
Scala 3 is just around the corner! But how can you give Scala 3 a try? What are some of its new exciting features? How do you migrate to Scala 3? Join us and you'll discover the answers to these questions ;)
extends Color(0xFF0000) case object Green extends Color(0x00FF00) case object Blue extends Color(0x0000FF) enum Color(val rgb: Int): case Red extends Color(0xFF0000) case Green extends Color(0x00FF00) case Blue extends Color(0x0000FF)