#!/usr/local/cpython-3.4/bin/python3

# pylint: disable=superfluous-parens

"""Test using abc.ABCMeta for 2.x vs 3.x differences."""


def main():
    """Main function."""
    try:
        import py2prn as prn
    except (ImportError, SyntaxError):
        import py3prn as prn

    print_thing = prn.PrintThing('thing')
    print_thing.print_thing()


main()