Logo

Programming-Idioms

  • Dart
  • C
typedef struct {
  double x;
  double y;
} Point;
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