Skip to content

Instantly share code, notes, and snippets.

@ifalok007
Created July 29, 2022 06:49
Show Gist options
  • Save ifalok007/98933aded666cd11296854dc8e6471b0 to your computer and use it in GitHub Desktop.
Save ifalok007/98933aded666cd11296854dc8e6471b0 to your computer and use it in GitHub Desktop.
traits
trait Greeter {
def meet(name: String): Unit
  def greet(name: String): Unit = println("Hello, " + name + "!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment