Slides from LASER 2012
renoX
renozyx at gmail.com
Fri Sep 21 00:37:45 PDT 2012
On Friday, 21 September 2012 at 04:56:04 UTC, Andrei Alexandrescu
wrote:
> On 9/20/12 6:03 PM, renoX wrote:
>> Thank for these slides.
>>
>> I didn't get some part of the VRP slides: p40 of the third
>> lesson:
>> byte a, b, c;
>> a = 1;
>> b = c | a; // error
>> Is-this really an error? A binary-or operation on bytes should
>> return a
>> byte..
>>
>> BR,
>> renoX
>
> Yes, it's a bug in the slides. Thanks! A correct example would
> be:
>
> byte a, b;
> int c = 1;
> b = c | a;
>
>
> Andrei
Ah, I understand better now.
Thanks for your reply.
BR,
renoX
More information about the Digitalmars-d-announce
mailing list