From 92a6ea5a59d40aff5b8bb93f692d0623bc7215a0 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sun, 23 Nov 2014 20:47:52 +0100 Subject: [PATCH] Fix assign statement. --- Monicelli.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monicelli.y b/Monicelli.y index 79d38b7..e40c105 100644 --- a/Monicelli.y +++ b/Monicelli.y @@ -83,7 +83,7 @@ variable: ID | ARTICLE ID | ARTICLE STAR ID | STAR ID ; assign_stmt: - ID ASSIGN expression + variable ASSIGN expression ; print_stmt: expression PRINT