Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Haskell
data Point = Point
  { x :: Double
  , y :: Double
  } deriving (Eq, Ord, Show, Read)

This version contains a deriving statement at the end which automatically writes the equality, ordering, and to and from string functions for this type.
data Point = Point 
  { x :: Double
  , y :: Double 
  }
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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