<@U39JR7AJG> Sure. You can do something like ``` p...
# getting-started
r
@rogercaplan Sure. You can do something like
Copy code
private val _test = lazy { makeSomeData() }
val test by _test
Then you can access
_test
, which is the delegate.