Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Elixir
p = [ x: 1.122, y: 7.45 ]
{x, y}
defmodule Point do
  defstruct x: 0.0, y: 0.0
end

the tuple does the trick but a type is best implemented by a struct which is a module
N.B. the types of x and y can change
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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