1 2 3 4 5 6 7 8 9 10 11 12 13 14
package org.kotlintestmpp.date /** * Common `expect` declaration */ expect fun getCurrentDate(): String /** * Common date util function */ fun getDate(): String { return "Today's Date is ${getCurrentDate()}" }