Logo

Programming-Idioms

History of Idiom 5 > diff from v354 to v355

Edit summary for version 355 by :
New Ada implementation by user [Smaehtin]

Version 354

2016-02-16, 14:43:05

Version 355

2016-02-16, 15:07:02

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Code
type Point is
   record
      X : Float;
      Y : Float;
   end record;