With Python I can do the next:
equals = filecmp.cmp(file_old, file_new)
Is there any builtin function to do that in go language? I googled it but without success.
I could use some hash function in hash/crc32
package, but that is more work that the above Python code.