Is it possible to create a class field that is pub...
# announcements
d
Is it possible to create a class field that is public for getting, but private for setting without a boilerplate property?: var enabled:Boolean = true; get() = true; private set(value) { field = true }