Posted to tcl by evilotto at Thu Jan 26 21:27:33 GMT 2017view raw

  1. % expr {$e == $e}
  2. 0
  3. % expr {$e eq $e}
  4. 1
  5. % expr {[expr $f] == $f}
  6. 1
  7. % expr {[expr $f] eq $f}
  8. 0
  9. %
  10.