Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Dart
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