# * first_name - read-write
# * last_name - read-write
#
-# This class should also have a method named "printable_name". This
+# This class should also have a method named "full_name". This
# method should return the first and last name separated by a string
# ("Jon Smith").
#
# * salary - read-write
# * ssn - read-only
#
-# The Employee class should override the "printable_name" method to
+# The Employee class should override the "full_name" method to
# append the employee's title in parentheses ("Jon Smith
# (Programmer)"). Use override() and super() for this.
#
# consuming class implement an "as_string" method.
#
# Make the Person class from the last set of exercises consume this
-# role. Use printable_name as the output for the as_string method. The
+# role. Use full_name as the output for the as_string method. The
# Employee subclass should still override this output.
#
# Implement a role HasMoney. This should provide a read-write