Skip to content

Instantly share code, notes, and snippets.

@teivah
Created October 29, 2018 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teivah/89dbfa16a8dd086d7dbe6eee146e8940 to your computer and use it in GitHub Desktop.
Save teivah/89dbfa16a8dd086d7dbe6eee146e8940 to your computer and use it in GitHub Desktop.
def printSomething(s: String) = {
println(s)
}
def printSomething(s: String): Unit = {
println(s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment