05-25-2024, 01:12 PM
T NOT T should not be allowed. NOT is unary operator, like making a number negative.
the problem is somebody could write T -3 then compiler picks it up as T - 3. so why can't NOT work the same way, programmer asks? because NOT was designed to work with one integer at a time.
programmer asks if he doesn't use the ide. try to type T -3 in ide and it puts space between minus and 3.
new _NEGATE cause more confusion. is it only supposed to be used in IF statement?
do not load compilelog.txt into ide. creates very strange characters which should be utf-8, for fancy single-quote. this is just a disgusting thing g++ does.
the problem is somebody could write T -3 then compiler picks it up as T - 3. so why can't NOT work the same way, programmer asks? because NOT was designed to work with one integer at a time.
programmer asks if he doesn't use the ide. try to type T -3 in ide and it puts space between minus and 3.
new _NEGATE cause more confusion. is it only supposed to be used in IF statement?
do not load compilelog.txt into ide. creates very strange characters which should be utf-8, for fancy single-quote. this is just a disgusting thing g++ does.