RosettaCodeData/Task/Host-introspection/Delphi/host-introspection.pas
2024-10-16 18:07:41 -07:00

10 lines
194 B
ObjectPascal

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