PLOGHELP ASSERT                               Chris Mellish, August 1982
                                Revised by Kathryn Seifert  October 1986

Predicate to add a clause to the database.

    ?- assert(X).

Keywords: database, assertion

Adds clause X to the database.  In POPLOG Prolog, this is  the same as
'assertz' (the clause is added AFTER all existing clauses).

-- RELATED DOCUMENTATION ----------------------------------------------

PLOGHELP * ASSERTA
 Predicate to add a clause to database before other clauses with the
 same predicate.

PLOGHELP * ASSERTZ
 Predicate to add a clause to database after other clauses with the same
 predicate.

PLOGHELP * DATABASE
 Overview of Prolog database operations
