Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
module x
  type point
  real :: x, y
  end type point
end module x
type point
  real :: x
  real :: y
end type point
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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