1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 10:07:45 +03:00
mal/php/step1_read_print.php

45 lines
778 B
PHP

<?php
require_once 'readline.php';
require_once 'types.php';
require_once 'reader.php';
require_once 'printer.php';
// read
function READ($str) {
return read_str($str);
}
// eval
function MAL_EVAL($ast, $env) {
return $ast;
}
// print
function MAL_PRINT($exp) {
return _pr_str($exp, True);
}
// repl
function rep($str) {
return MAL_PRINT(MAL_EVAL(READ($str), array()));
}
// repl loop
do {
try {
$line = mal_readline("user> ");
if ($line === NULL) { break; }
if ($line !== "") {
print(rep($line) . "\n");
}
} catch (BlankException $e) {
continue;
} catch (Exception $e) {
echo "Error: " . $e->getMessage() . "\n";
echo $e->getTraceAsString() . "\n";
}
} while (true);
?>