tcl.in 342 B

12345678910111213141516171819
  1. # vim: set filetype=tcl shiftwidth=4 tabstop=8 expandtab :
  2. # START_INDENT
  3. proc abc {} {
  4. set a 5
  5. if {[some_cmd]==1} {
  6. foreach i [list {1 2 3}] {
  7. # Does this comment affect anything?
  8. puts $i
  9. }
  10. }
  11. }
  12. command_with_a_long_time -arg1 "First" \
  13. -arg2 "Second" \
  14. -arg3 "Third"
  15. puts "Move indent back after line continuation is complete"
  16. # END_INDENT