NewProgram

if 0 {


Summary

Author 2016-02-23: This is a template for a wiki-page with a new tcl/tk-program
...bla..blah...
...

With ideas and code from the following pages:

}


Code

 # NewProgram001.tcl - Author - 2016-02-23
 # https://wiki.tcl-lang.org/41446

 # http://ideone.com/ElpkSm
  puts "Demo:"
  set i 0
  foreach s { foo bar grill }  { incr i; puts "$i $s" }
 ### EOF ###

Output

Demo:
1 foo
2 bar
3 grill

Comments

This is the Alpha-version, there will be bugs, so use with caution
...


See also: