fork download
  1. object Main extends App {
  2. object Bob {
  3. def response(statement: String): String = {
  4. statement.trim() match {
  5. case x if x.isEmpty => "Fine. Be that way!"
  6. case x if x.matches("^[A-Z0-9][^a-z].+\\?$") => "Calm down, I know what I'm doing!"
  7. case x if x.matches("^.+\\?$") => "Sure."
  8. case x if x.matches ("^(?=[^A-Z\\n]*[A-Z])[^?\\n]+$") => "Whoa, chill out!"
  9. case _ => "Whatever."
  10. }
  11. }
  12. }
  13.  
  14. println(Bob.response("1, 2, 3 GO!"))
  15. println(Bob.response("1, 2, 3"))
  16. }
Success #stdin #stdout 0.41s 55640KB
stdin
Standard input is empty
stdout
Whoa, chill out!
Whatever.