diff --git a/RegExRules b/RegExRules
deleted file mode 100644
index d3b7adf92e7a1b5c31a7dd29763cb0ba5a60de9d..0000000000000000000000000000000000000000
--- a/RegExRules
+++ /dev/null
@@ -1,27 +0,0 @@
-program: 
-^ program +(IDENT) *\(input,output\); *$
-
-ident:
-([a-zA-Z_][a-zA-Z_1-9]*)
-
-vars:
-^ *var +(IDENTS *: *TIPO *;)* *$
-
-idents:
-(IDENT)(, *IDENT)*
-
-tipo:
-integer
-
-bloco:
-^ *begin *$
-(EXPR)*
-^ *end *$
-
-expr:
- *IDENT *\(param\); *
- 
-param:
-num || ident
- 
-op:[+-*/&|^(&&)(||)(^^)]
\ No newline at end of file