mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
10 lines
124 B
PHP
10 lines
124 B
PHP
<?php
|
|
require 'point.php';
|
|
|
|
$point = new Point;
|
|
$point->x = 3;
|
|
$point->y = 7;
|
|
|
|
echo '<pre>';
|
|
print_r($point);
|
|
echo '</pre>'; |