Skip to content

Instantly share code, notes, and snippets.

@IvanShafran
Last active August 22, 2019 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IvanShafran/acde17a87ef4254c6f56c6b4a303cd5f to your computer and use it in GitHub Desktop.
Save IvanShafran/acde17a87ef4254c6f56c6b4a303cd5f to your computer and use it in GitHub Desktop.
interface Time {
fun getCurrentTimeMillis(): Long
}
class TimeImpl : Time {
override fun getCurrentTimeMillis() = System.currentTimeMillis()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment