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