mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-29 12:52:43 +00:00
7 lines
106 B
PHP
7 lines
106 B
PHP
<?php
|
|
class Point {
|
|
public function __construct(private int $x = 0, private int $y = 0)
|
|
{
|
|
}
|
|
}
|