I want to create a collection from a list.
friends1
is a list of names.
I am trying to do:
set friends2 ""
foreach frnd $friends1 {
append_to_collection friends2 $frnd
}
Error: At least one collection required for argument 'object_spec' to append_to_collection when the 'collection' argument is empty (SEL-014)
Any ideas? thanks!