Posted to tcl by dbohdan at Sun May 07 19:34:09 GMT 2017view raw

  1. > echo 'puts [lreplace {a b c} 99 99 d]' | ./tclkit-8.6.2
  2. list doesn't contain element 99
  3. > echo 'puts [lreplace {a b c} 99 99 d]' | ./tclkit-8.6.3
  4. a b c d
  5. > echo 'puts [lreplace {a b c} 99 99 d]' | ./tclkit-8.6.4
  6. a b c d
  7. > echo 'puts [lreplace {a b c} 99 99 d]' | ./tclkit-8.6.5
  8. a b c d
  9. > echo 'puts [lreplace {a b c} 99 99 d]' | ./tclkit-8.6.6
  10. list doesn't contain element 99
  11.