We can also create functions within a class. These are class member functions, functions that are class members!

Awesome! We need the accessibility to be public otherwise we will get an error when calling the function outside the class.

We can define a function as normal, just within the class. Then we call it on the instance of the class.

Nope! If the accessibility is private we won't be able to use the function outside of the class!