Newer
Older
multi-exe-cmake / src / main1 / hello.kt
rnentjes on 22 Jan 2018 148 bytes Initial commit
import common.*

fun specificFunction() {
    println("specific!")
}

fun main(args: Array<String>) {
    commonFunction()
    specificFunction()
}