Hi,

Specs:

  * `Windows 10 x64`
  * `Nim Compiler Version 1.6.10 [Windows: amd64]`



What is the expected output of the `echo` in this code:
    
    
    var bytes = [0x1F.uint8, 0xC2]
    bytes = [bytes[1], bytes[0]]
    echo bytes
    
    
    Run

I would expect `[0xC2, 0x1F]`, but it's `[0xC2, 0xC2]`. Is this expected 
behaviour?

Reply via email to