Skip to content

Instantly share code, notes, and snippets.

@stephanos
Last active December 11, 2015 18:39
Show Gist options
  • Select an option

  • Save stephanos/4643260 to your computer and use it in GitHub Desktop.

Select an option

Save stephanos/4643260 to your computer and use it in GitHub Desktop.
task(2) {
def isWorkingDay(day: String) = {
var res: Boolean = false
day match {
case "Monday" =>
res = true
case "Tuesday" =>
res = true
case "Wednesday" =>
res = true
case "Thursday" =>
res = true
case "Friday" =>
res = true
case _ =>
}
res
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment