Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created November 22, 2017 10:00
Show Gist options
  • Save JavierCane/9f62f7677bc64f53920656147954e512 to your computer and use it in GitHub Desktop.
Save JavierCane/9f62f7677bc64f53920656147954e512 to your computer and use it in GitHub Desktop.
Scala standard class example for the CodelyTV Pro Scala course πŸ‘‰ https://pro.codely.tv/
package tv.codely.scala_intro_examples.lesson_09_oop
final class StandardClass(
val attributeInConstruct: String,
private val privateAttributeInConstruct: String = "Some default value"
) {
val attributeInBody = "public body attribute value"
private val privateAttributeInBody = "private body attribute value"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment