Posted to tcl by rmax at Mon Jul 06 11:56:40 GMT 2009view raw

  1. # got
  2. if {
  3. foo
  4. } then {
  5. bar
  6. } elseif {
  7. var
  8. bar
  9. } then {
  10. baz
  11. }
  12. # expected
  13. if {
  14. foo
  15. } then {
  16. bar
  17. } elseif {
  18. var
  19. bar
  20. } then {
  21. baz
  22. }

Comments

Posted by rmax at Mon Jul 06 12:02:13 GMT 2009 [text] [code]

# even reproducable with plain [if]: # expected if { test foo } { bar } # got if { test foo } { bar }