mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-11-23 05:45:06 +00:00
18 lines
235 B
PHP
18 lines
235 B
PHP
|
<?php
|
||
|
namespace MadLisp;
|
||
|
|
||
|
class Symbol
|
||
|
{
|
||
|
protected string $name;
|
||
|
|
||
|
public function __construct(string $name)
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
}
|
||
|
|
||
|
public function name(): string
|
||
|
{
|
||
|
return $this->name;
|
||
|
}
|
||
|
}
|