Logo

Programming-Idioms

History of Idiom 5 > diff from v353 to v354

Edit summary for version 354 by :
New Lua implementation by user [jparoz]

Version 353

2016-02-16, 12:59:40

Version 354

2016-02-16, 14:43:05

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
point = { x = 123, y = 456 }