aboutsummaryrefslogtreecommitdiff
path: root/examples.api/print.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'examples.api/print.tcl')
-rw-r--r--examples.api/print.tcl5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples.api/print.tcl b/examples.api/print.tcl
new file mode 100644
index 0000000..e05d48b
--- /dev/null
+++ b/examples.api/print.tcl
@@ -0,0 +1,5 @@
+puts "-- List present in an array constructed from C program --"
+foreach {str} $MYLIST {
+ puts $str
+}
+puts "---------------------------------------------------------"