Skip to content

Instantly share code, notes, and snippets.

@DanisHack
Created October 17, 2019 00:00
Show Gist options
  • Save DanisHack/5df148c64e7b2d9de3a6e3539a23125f to your computer and use it in GitHub Desktop.
Save DanisHack/5df148c64e7b2d9de3a6e3539a23125f to your computer and use it in GitHub Desktop.
Sample Scala code
class Greeting {
def Greet() {
println("Hello from Educative!");
}
}
object Main extends App {
var obj = new Greeting();
obj.Greet();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment