fork download
  1. val lazyValue: String by lazy {
  2. println("computed!")
  3. "Hello"
  4. }
  5.  
  6. fun main(args: Array<String>) {
  7. println(lazyValue)
  8. println(lazyValue)
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/228512/101
Success #stdin #stdout 0.08s 33644KB
stdin
Standard input is empty
stdout
computed!
Hello
Hello