class interface PERSON -- a simple person class for lab06 to use as members of a club creation make (s: STRING; t: INTEGER) -- s is person's name -- t is person's telephone number feature(s) from PERSON name: STRING telno: INTEGER make (s: STRING; t: INTEGER) -- s is person's name -- t is person's telephone number print_person -- print name and telephone number of person end of PERSON