Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 296 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 296 Bytes

15min-class


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))
}