RosettaCodeData/Task/Host-introspection/Delphi/host-introspection.delphi
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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.