> Also, I thought I will get overflow exception with uint8 going with values > more that 255 but it's automatically went back to zero. In c# I have to use > something like to achieve that. Is there any black magic about overflows in > Nim I need to know ? Thanks in advance :)
Unsigned overflow is defined as wrap around, while signed overflow triggers an exception. If you need the performance and you're sure that won't happen you can turn this off, like also array/seq bound checking, etc.
