11.001001000011111101101010100010001000 Arithmazium
Home

heading()

Paranoia invites users to respond, and presents the copyright notice.

def heading():
    """Gives user a place to report issues."""
    head = [
        "Users are invited to help debug and augment this program so it will",
        "cope with unanticipated and newly uncovered arithmetic pathologies.\n",
        "Please send suggestions and interesting results to",
        "\tJerome Coonen",
        "\tjcoonen_at_gmail_dot_com\n\n",
        "\t*(C) 1983 Prof. William M. Kahan",
        "\t*  You may copy this program freely if you acknowledge its source."
    ]
    print_msgs(head)
    return


Home