Logo

Programming-Idioms

History of Idiom 5 > diff from v355 to v356

Edit summary for version 356 by :
New Scala implementation by user [LukaJCB]

Version 355

2016-02-16, 15:07:02

Version 356

2016-02-16, 16:44:09

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
case class Point(x: Float, y: Float)