Skip to content

Instantly share code, notes, and snippets.

@Chandler
Created August 11, 2014 01:26
Show Gist options
  • Save Chandler/17583706262e1ce60c42 to your computer and use it in GitHub Desktop.
Save Chandler/17583706262e1ce60c42 to your computer and use it in GitHub Desktop.
scala> def test(name: String = "joe"): Boolean = true
test: (name: String)Boolean
scala> val test: String => Boolean = { (name: String = "joe") => true }
<console>:1: error: ')' expected but '=' found.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment