# a program using the name decoder class
# this program and the class need to be in the same folder
from NameDecoder import NameDecoder

def main():
        ND = NameDecoder()  # make a name decoder object

        name = "OLIVER"
        meaning = ND.define(name) # use it to decode the name Oliver
        print name,"means",meaning

main()
