Logo

Programming-Idioms

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

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