Comment by aidenn0

1 day ago

This is always true for every program written in most languages (very few languages have zero dependencies on the architecture, particularly if you include endianness).

If you want to be really pedantic, you can get completely different behavior if you built your system image in February in C with just:

  if (__DATE__[0] == 'F') {
    // February
  } else {
    // Not February
  }