summaryrefslogtreecommitdiff
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index 49b6ec9..9339549 100644
--- a/src/print.c
+++ b/src/print.c
@@ -2,7 +2,7 @@
#include "./include/ast.h"
#include <stdio.h>
-void print_string(ast_t *str) { printf("=> %s\n", str->string_value); }
+void print_string(ast_t *str) { printf("=> \"%s\"\n", str->string_value); }
void print_int(ast_t *i) { printf("=> %d\n", i->int_value); }