Logo

Programming-Idioms

History of Idiom 5 > diff from v329 to v330

Edit summary for version 330 by :

Version 329

2015-10-29, 13:51:41

Version 330

2015-10-29, 14:05:11

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Code
data Point = Point 
  { x :: Double
  , y :: Double 
  }
Code
data Point = Point 
  { x :: Double
  , y :: Double 
  }
Code
struct Point{
    double x;
    double y;
}

    
Code
struct Point{
    double x;
    double y;
}

    
Code
my $point = [ 1.5, 6.3 ];
Code
my $point = [ 1.5, 6.3 ];
Comments bubble
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).
Comments bubble
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).
Imports
Best Site good looking <a href=" http://www.torosdental.com/index.php?buy-xenical-in-the-uk.pptx ">cheapest xenical online</a>  But the arrest this month of an anti-corruption activist illustrates that however much China has developed economically, its rulers tightly restrict civil society and activist voices, even when they speak out in support of official government campaigns.
 
Imports
Through friends <a href=" http://www.mltouraine.com/prevacid-price-in-india.pptx#engineer ">is prevacid available in canada</a>  "Although Fitch continues to believe that the debt ceilingwill be raised soon, the political brinkmanship and reducedfinancing flexibility could increase the risk of a U.S.default," the rating agency wrote in a statement.
 
Code
Best Site good looking <a href=" http://www.torosdental.com/index.php?buy-xenical-in-the-uk.pptx ">cheapest xenical online</a>  But the arrest this month of an anti-corruption activist illustrates that however much China has developed economically, its rulers tightly restrict civil society and activist voices, even when they speak out in support of official government campaigns.
 
Code
Through friends <a href=" http://www.mltouraine.com/prevacid-price-in-india.pptx#engineer ">is prevacid available in canada</a>  "Although Fitch continues to believe that the debt ceilingwill be raised soon, the political brinkmanship and reducedfinancing flexibility could increase the risk of a U.S.default," the rating agency wrote in a statement.
 
Doc URL
http://filplast.eu/?where-to-buy-metronidazole-or-tinidazole.pptx
Doc URL
http://www.mltouraine.com/prevacid-price-in-india.pptx
Origin
http://filplast.eu/?where-to-buy-metronidazole-or-tinidazole.pptx
Origin
http://www.mltouraine.com/prevacid-price-in-india.pptx
Demo URL
http://filplast.eu/?where-to-buy-metronidazole-or-tinidazole.pptx
Demo URL
http://www.mltouraine.com/prevacid-price-in-india.pptx
Code
Point = Struct.new(:x, :y)
Code
Point = Struct.new(:x, :y)
Comments bubble
Instantiate like this : Point.new(1.0,1.0)
Comments bubble
Instantiate like this : Point.new(1.0,1.0)
Doc URL
http://www.ruby-doc.org/core-2.1.0/Struct.html
Doc URL
http://www.ruby-doc.org/core-2.1.0/Struct.html