Skip to content

Instantly share code, notes, and snippets.

@minibugdev
Created July 20, 2016 17:02
Show Gist options
  • Save minibugdev/1a496880393420b27d22f80a3bcb2299 to your computer and use it in GitHub Desktop.
Save minibugdev/1a496880393420b27d22f80a3bcb2299 to your computer and use it in GitHub Desktop.
// 1st by "const"
@file:JvmName("Url")
const val URL_BASE: String = "http://github.com"
const val URL_USER: String = "$URL_BASE/user"
// 2nd by "companion"
class Url {
companion object {
@JvmField val URL_BASE: String = "http://github.com"
@JvmField val URL_USER: String = "$URL_BASE/user"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment