| This is read-only version of the old wiki, feel free to browse it for materials. If you want to share your own materials, please use GeoGebraTube instead. You are also welcome to help us enhance the new wiki. If any questions arise, please contact the webmaster. |
Append Command
Syntax: Append[object A, list L] Append[list L, object A]
Action: Append[object A, list L] inserts prepends object A to list L, Append[list L, object A] appends it. When both parameters are lists, the second one is appended (as single element) to the first one.
Example: Append[{A},{B}] returns {A,{B}}
Notes: The same can be achieved using Join[{A},L] or Join[L,{A}].