Guest User

Untitled

a guest
Apr 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def describe(x: Any) = x match {
  2. case 5 => "five"
  3. case true => "truth"
  4. case "hello" => "hi!"
  5. case Nil => "the empty list"
  6. case _ => "something else"
  7. }
Add Comment
Please, Sign In to add comment