RosettaCodeData/Task/Host-introspection/Delphi/host-introspection.delphi
2023-07-01 13:44:08 -04:00

10 lines
194 B
Text

program HostIntrospection ;
{$APPTYPE CONSOLE}
uses SysUtils;
begin
Writeln('word size: ', SizeOf(Integer));
Writeln('endianness: little endian'); // Windows is always little endian
end.