And pin 0 has Interrupt 0 support, so it can trigger on rising, falling, or change, and with slightly lower latency than pin change interrupt which works on all pins. The issue with INT0 is that it is higher priority than the pinchange interrupt used for the USB stack, so if you use USB with your digispark, using INT0 can sometimes interfere with the connection. It's okay if you make sure the interrupt doesn't fire too often, but, like, if you hooked up a button without a hardware debounce circuit, that would make it disconnect because the bounce would be very rapid and consume a lot of CPU time, causing the USB library (digiusb, digikeyboard, or whatever) to be too slow to respond to the host computer.