Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Obj-c
typedef struct {
  double x,y;
} NSPoint;

Precisely same as plain C; the NSPoint struct actually is part of the Foundation API used in most ObjC environments
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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