Some of the more "elegant" statements in C seem to have no equally elegant translation in PB. Take for example the C statement:
Am I right that the simplest translation of this into PB syntax would be something along these lines:
???
Or is there something I've overlooked?
Many thanks,
--Tom
------------------
Tom Brodhead
Code:
x += x >> 17;
Code:
OldX = x SHIFT RIGHT OldX, 17 x = x + OldX
Or is there something I've overlooked?
Many thanks,
--Tom
------------------
Tom Brodhead
Comment