Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Created January 3, 2018 14:23
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 jwalgemoed/60e29cd2f2b68577550e7cacbd972f6c to your computer and use it in GitHub Desktop.
Save jwalgemoed/60e29cd2f2b68577550e7cacbd972f6c to your computer and use it in GitHub Desktop.
class Environment {
val applicationName: String
init {
println("Initializing...")
applicationName = "Application Name"
}
}
fun main(args: Array<String>) {
println(Environment().applicationName)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment