Next: , Previous: , Up: scheme lex datum   [Index]


3.4.4.3 Vectors

Vector data, representing vectors of objects, are represented using the notation #(<datum> ...). For example, a vector of length 3 containing the number object for zero in element 0, the list (2 2 2 2) in element 1, and the string "Anna" in element 2 can be represented as follows:

#(0 (2 2 2 2) "Anna")

This is the external representation of a vector, not an expression that evaluates to a vector.