
In Dart, add _ before a name to make it private to its library. Use getters to expose controlled read access.
Predict output from a function's API without seeing its code.
Abstraction: you don't need to know how it works — just what it does. Predict the output from the function's API.
What does square(20) return? (It squares its input)