TwinCAT and (I think so) every other IEC61131-3 language supports both conversion types <type>_TO_<type> and TO_<type>. I am wondering, is there any cons to using the latter, so TO_<type>? For example, I have a calculation and we all know, that typing the extra 5 letters makes or breaks your day ;)
nResult : INT;
fDivisor : REAL;
// Does this perform any slower, or are there any cons to using it like this?
nResult := TO_INT(32767.0/fDivisor);
nResult := REAL_TO_INT(32767.0/fDivisor);