aboutsummaryrefslogtreecommitdiff
path: root/php/step5_tco.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/step5_tco.php')
-rw-r--r--php/step5_tco.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/php/step5_tco.php b/php/step5_tco.php
index a3785cf..283e47e 100644
--- a/php/step5_tco.php
+++ b/php/step5_tco.php
@@ -93,7 +93,7 @@ function MAL_EVAL($ast, $env) {
// print
function MAL_PRINT($exp) {
- return _pr_str($exp, True) . "\n";
+ return _pr_str($exp, True);
}
// repl
@@ -117,7 +117,7 @@ do {
$line = mal_readline("user> ");
if ($line === NULL) { break; }
if ($line !== "") {
- print(rep($line));
+ print(rep($line) . "\n");
}
} catch (BlankException $e) {
continue;