Node:LongestWord, Next:, Previous:LongestReal, Up:Reference



LongestWord

Synopsis


type
  LongestWord = LongestCard;

Description

LongestWord is GPC's longest-possible unsigned integer type. Currently, this is the same as LongWord. On most platforms it is 64 bits wide and thus has a range of 0..18446744073709551615. (It is the same as LongestCard.)

There are lots of other integer types in GPC, see Integer Types.

Conforming to

LongestWord is a GNU Pascal extension.

Example


program LongestWordDemo;
var
  a: LongestWord;
begin
  a := 42;
  WriteLn (a)
end.

See also

Integer Types, Subrange Types.