0
リストからコレクションを作成したい。 friends1
は名前のリストです。TCLでコレクションにリストを作る
私がやろうとしています:
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)
任意のアイデア?ありがとう!
「append_to_collection」はどのようなコードで定義されていますか?それは標準のTclではありません(http://www.tcl-lang.org/man/tcl8.6/で定義されています) –
私はicコンパイラを使用しており、それは組み込みのコマンドです:append_to_collection オブジェクトをコレクションに追加し、変数を変更します。 – Tlalit