Logo

Programming-Idioms

  • Dart
  • Haskell
data Point = Point 
  { x :: Double
  , y :: Double 
  }
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.
class Point {
  double x, y;
}
class Point {
  double x, y;
  Point(this.x, this.y);
}

With constructor, which you will almost always have.
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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