next | previous | forward | backward | up | top | index | toc | home

OutputDictionary -- the dictionary for output values

Description

The symbols o1, o2, o3, etc., are used to store the output values arising from interaction with the user, one line at a time. The dictionary OutputDictionary is the dictionary in which those symbols reside.
i1 : 2+2

o1 = 4
i2 : "asdf" | "qwer"

o2 = asdfqwer
i3 : value \ values OutputDictionary

o3 = {4, asdfqwer}

o3 : List
i4 : dictionaryPath

o4 = {User#"private dictionary", Parsing.Dictionary, TangentCone.Dictionary,
     ------------------------------------------------------------------------
     SchurRings.Dictionary, Classic.Dictionary,
     ------------------------------------------------------------------------
     PrimaryDecomposition.Dictionary, LLLBases.Dictionary,
     ------------------------------------------------------------------------
     Elimination.Dictionary, Core.Dictionary, OutputDictionary,
     ------------------------------------------------------------------------
     PackageDictionary}

o4 : List
i5 : peek OutputDictionary

o5 = Dictionary{"o1" => o1}
                "o2" => o2
                "o3" => o3
                "o4" => o4

See also

For the programmer

The object OutputDictionary is an object of class GlobalDictionary.