AppendTo[s, elem] appends elem to the value of s, and resets s to the result.
Attributes[symbol] gives the list of attributes for a symbol.
BeginPackage["context`"] makes context` and System` the only active contexts. BeginPackage["context`", {"need_1`", "need_2`", ...}] calls Needs on the need_i.
PrependTo[s, elem] prepends elem to the value of s, and resets s to the result.
SetAttributes[s, attr] adds attr to the list of attributes of the symbol s.
Trace
(Built-in Mathematica Symbol) Trace[expr] generates a list of all expressions used in the evaluation of expr. Trace[expr, form] includes only those expressions which match form. Trace[expr, s] includes ...
$OutputSizeLimit specifies the maximum size in bytes of expressions that will automatically be output in their entirety in a Mathematica notebook.
Many aspects of the Mathematica front end such as the styles of cells, the appearance of notebooks, or the parameters used in typesetting are controlled by options. For ...
Since lists are just a particular kind of expression, it will come as no surprise that you can refer to parts of any expression much as you refer to parts of a list. This ...
Functions like Read and Find are most often used for processing text and data from external files. In some cases, however, you may find it convenient to use these same ...