aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multiplatform-example/src/linuxMain/kotlin/org/kotlintestmpp/LinuxDateUtils.kt
blob: 8900f87bb846f7096710962c073e6e0699b13a88 (plain)
1
2
3
4
5
6
7
8
package org.kotlintestmpp.date

/**
 * Linux actual implementation for `getCurrentDate`
 */
actual fun getCurrentDate(): String {
    TODO("Not yet implemented")
}