Scala Match par défaut

something match {
    case "val" => "found match!!"
    case _ => "default case"
}
z0san