diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lyn.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ static int eval_group(struct lyn *lyn, struct lyn_value value) { - fprintf(lyn->output, "(begin"); + fprintf(lyn->output, "((lambda () (begin"); lyn->depth++; foreach_vec(gi, value.args) { @@ -24,7 +24,7 @@ static int eval_group(struct lyn *lyn, struct lyn_value value) fprintf(lyn->output, ")"); } - fprintf(lyn->output, "\n%*s)", 2 * lyn->depth, " "); + fprintf(lyn->output, "\n%*s)))", 2 * lyn->depth, " "); lyn->depth--; return 0; |