|
|
|
|
|
by kbr2000
1915 days ago
|
|
In Tcl's expr: ^ stands for bitwise XOR: so [expr {-2^2}] results in -4 * stands for exponentiation: so [expr {-2*2}] results in 4 Both seem correct to me, taking into account how integers are represented in binary (two's complement for the negative ones). With regards to debugging dynamic programming languages, it is different as compared to their static counterparts, since much is delayed to happen at runtime (as opposed to at compilation time). But it also opens up possibilities (like introspection, ability to intervene in the scripts while they run, ...). It requires a different mindset. |
|