Logo

Programming-Idioms

History of Idiom 5 > diff from v352 to v353

Edit summary for version 353 by :
New PHP implementation by user [djxfade]

Version 352

2016-02-05, 14:32:05

Version 353

2016-02-16, 12:59:40

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
<?php

class Point{
    public $x = 0.0;
    public $y = 0.0;
}