Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl
my $point = { x => 1, y => 2 };

In a hash, members are named.

No need to declare a type beforehand.
my $point = [ 1.5, 6.3 ];

This array uses indices 0, 1 to hold x, y.

No need to declare a type beforehand.

For lists, perl prefers using arrays (over using hashes).
type Point is
   record
      X : Float;
      Y : Float;
   end record;

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