In Kotlin, you wouldn't use `customer1.getOrderedP...
# getting-started
r
In Kotlin, you wouldn't use
customer1.getOrderedProducts()
. In Java
customer1.getOrderedProducts()
calls the member function and
CustomerKt.gerOrderedProducts(customer1)
calls the extension.