mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-01 16:49:53 +00:00
7 lines
119 B
PHP
7 lines
119 B
PHP
<?php
|
|
require_once 'point_interpolation.php';
|
|
|
|
$point = new Point(5, 12);
|
|
|
|
echo "point = {$point}"; // point = (5, 12)
|