| Docker class | notes |
|---|---|
| Class #6 | Patrick Made this |
- One
- two
- three
object MatchTest1 extends App {
def matchTest(x: Int): String = x match {
case 1 => "one"
case 2 => "two"
case _ => "many"
}
println(matchTest(3))
}
| Name | Name | Last commit date | ||
|---|---|---|---|---|