Skip to content

Instantly share code, notes, and snippets.

@YordanGeorgiev
Created February 17, 2018 10:29
Show Gist options
  • Save YordanGeorgiev/abef01921de7d0cd61d5115004cf6edd to your computer and use it in GitHub Desktop.
Save YordanGeorgiev/abef01921de7d0cd61d5115004cf6edd to your computer and use it in GitHub Desktop.
[object singleton] how-to create object singleton in scala #scala
object SingleTon {
def apply(): SingleTon = {
new SingleTon()
}
}
class SingleTon {
def run(){
println ("running ... " )
}
}
SingleTon.run(passVar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment