mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-13 14:45:09 +00:00
6 lines
105 B
PHP
6 lines
105 B
PHP
<?php
|
|
class AgentSmith {}
|
|
$smit = new AgentSmith();
|
|
$wesson = new AgentSmith();
|
|
echo ($smit == $wesson);
|