| 1 | <?php |
||
| 6 | class StdEnv implements EnvInterface |
||
| 7 | { |
||
| 8 | use MappedEnvTrait; |
||
| 9 | |||
| 10 | const MAPPING = [ |
||
| 11 | 'list' => '_list' |
||
| 12 | ]; |
||
| 13 | |||
| 14 | |||
| 15 | 1 | public function _list(...$args) |
|
| 19 | |||
| 20 | 1 | public function car(array $list) |
|
| 24 | |||
| 25 | 1 | public function cdr(array $list) |
|
| 29 | |||
| 30 | 1 | public function display($arg) |
|
| 38 | |||
| 39 | 1 | public function newline() |
|
| 43 | } |
||
| 44 |