mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-11-22 21:35:03 +00:00
15 lines
261 B
PHP
15 lines
261 B
PHP
<?php
|
|
namespace MadLisp;
|
|
|
|
class MList extends Seq
|
|
{
|
|
public function get(int $index)
|
|
{
|
|
if ($this->has($index)) {
|
|
return $this->data[$index];
|
|
}
|
|
|
|
throw new MadLispException("list does not contain index $index");
|
|
}
|
|
}
|