The int is a datatype that represents an integer and is coded on 64 bits in memory.
int64 is a datatype that represents an integer (a whole number, not a fraction) and is coded on 64 bits in memory. Unlike its counterpart uint64 which is unsigned, int64 can be used to store positive and negative integers of values between -263 to 263 - 1.