From af77bb1c3cd490c63371421497eca4d6d1463aa9 Mon Sep 17 00:00:00 2001 From: Stefano Sanfilippo Date: Sun, 23 Nov 2014 20:48:23 +0100 Subject: [PATCH] Add missing semicolon. --- Monicelli.y | 1 + 1 file changed, 1 insertion(+) diff --git a/Monicelli.y b/Monicelli.y index e40c105..f6082e9 100644 --- a/Monicelli.y +++ b/Monicelli.y @@ -62,6 +62,7 @@ main: ; statements: /* epsilon */ | statements statement DOT +; statement: var_decl | assign_stmt | print_stmt | input_stmt | return_stmt | loop_stmt | branch_stmt | fun_call | abort_stmt | assert_stmt |