On Thu, Jan 23, 2020 at 11:51 AM ToddAndMargo via perl6-users
<perl6-us...@perl.org <mailto:perl6-us...@perl.org>> wrote:
Hi All,
This is just a trivia question.
Does anyone know if the actual data stored in
Raku variables is little endian or big endian?
-T
On 2020-01-23 09:07, Paul Procacci wrote:
endianess is dictate by the cpu.
If I store the value 4 into some memory address, the storage of and
retrieval thereof is controlled by the cpu.
Then I presume Raku rug on a Intel processor would
be little endian. So when I enter 0xFF44 it is
really being stored as 44, FF in memory. Interesting.