Created
November 22, 2017 10:00
-
-
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/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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