Integer VS Int32

Are there any advantages of the type INTEGER versus INT32?

I worked with a compiler in the past and if you used 32 bit integers on a 32 bit OS the compiler did all of the integer math using chip registers and it was noticeably faster than other size integer variables.

Thanks.

Integer is an alias for Int32 in the current compiler. When they move to 64-bit, it will become an alias for Int64.

So use Integer for native integer type.

OK … Thanks.