Logo

Programming-Idioms

  • C++
  • Dart
class Point {
  double x, y;
  Point(this.x, this.y);
}

With constructor, which you will almost always have.
class Point {
  double x, y;
}
struct Point{
  double x;
  double y;
};
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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