We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2b9383 commit 32b78d6Copy full SHA for 32b78d6
src/main/kotlin/SealedClass.kt
@@ -4,7 +4,6 @@
4
Sealed classes ensure type safety by restricting the types to be matched at compile-time rather than at runtime.
5
*/
6
7
-
8
sealed class Demo {
9
object One : Demo() {
10
fun display() {
src/main/kotlin/TopLevelMethod.kt
@@ -3,10 +3,8 @@ import toplevelmethod.topLevelMethods
3
fun main() {
topLevelMethods() // metoda erişim için projeye doğrudan import edilir.
val obj = Simple() //metoda erişim için Simple sınıfından bir nesne oluşturup kullanmak gerekir.
print(obj.localMethod())
11
12
}
0 commit comments