example.Hello.scala Maven / Gradle / Ivy
The newest version!
package example
object Hello extends Greeting with App {
println(greeting)
}
trait Greeting {
lazy val greeting: String = "hello"
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy