Skip to content

Instantly share code, notes, and snippets.

@ostretsov
Created December 29, 2014 03:42
Show Gist options
  • Save ostretsov/d2d491bec0e11f5a3469 to your computer and use it in GitHub Desktop.
Save ostretsov/d2d491bec0e11f5a3469 to your computer and use it in GitHub Desktop.
object OmitParenthesis {
def test = "test"
def test2() = "test2"
def main (args: Array[String]): Unit = {
println(test)
// println(test()) // it's impossible
println(test2)
println(test2())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment