// Declaration of a container, c1
container c1;
// A dynamic array of containers is declared
container c2[];
// A container is declared and initialized with three items:
// an integer (1), a real (3.14), and a string "a".
container c3 = [1,3.14,"a"];