Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Pascal
Type
  TPoint = Record
    x : Double;
    y : Double;
  End;

Pascal uses unit math to define type float.

You can use one of Pascal's floating point types directly (being type single or type double), depending on which precision is required.
type Point is
   record
      X : Float;
      Y : Float;
   end record;

New implementation...
< >
programming-idioms.org