mirror of
https://github.com/peklaiho/madlisp.git
synced 2024-11-22 21:35:03 +00:00
13 lines
190 B
PHP
13 lines
190 B
PHP
<?php
|
|
require('vendor/autoload.php');
|
|
|
|
function ml_get_env(): MadLisp\Env
|
|
{
|
|
$env = new MadLisp\Env();
|
|
|
|
$core = new MadLisp\Lib\Core();
|
|
$core->register($env);
|
|
|
|
return $env;
|
|
}
|