i can do this... i just think `init { }` is ugly a...
# getting-started
h
i can do this... i just think
init { }
is ugly and would rather use the constructor parameters:
Copy code
class Population(size: Int = 100) : ArrayList<Member>(size) {
    init {
        fill(Member())
    }
}