Hi,<br><br>Can someone explain why line 2 fails (and line 3 not)? <br>(also reproducible in other ways)<br><br>Thx<br>Pieter<br>PS. unfortunately and only temporarily running on windows xp<br><br><br>Erlang (BEAM) emulator version 5.6.2 [async-threads:0]<br>
<br>Eshell V5.6.2  (abort with ^G)<br>1> B = <<0:1000>>.<br><<0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,<br>  0,...>><br>2> <<_:80,Val:2,_/binary>> = B.<br>** exception error: no match of right hand side value <br>
                    <<0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,<br>                      0,...>><br>3> <<_:80,Val:8,_/binary>> = B.<br><<0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,<br>
  0,...>><br>4> <br><br><br>