summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/kotlinMultiplatform/kmpFirstLib/src/commonMain/kotlin/com/example/kmpfirstlib/KmpCommonFirstLibClass.kt
blob: 6fe8041505d457dd14de2a82324592981dcdcc0f (plain)
1
2
3
4
5
6
7
8
package com.example.kmpfirstlib

class KmpCommonFirstLibClass {

    fun get(): String {
        return "I'm here"
    }
}