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

% expr {$e == $e}
0
% expr {$e eq $e}
1
% expr {[expr $f] == $f}
1
% expr {[expr $f] eq $f}
0
%