summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--include/lexer.hpp4
-rw-r--r--lexer.cpp4
3 files changed, 11 insertions, 0 deletions
diff --git a/README.md b/README.md
index f20720d..b830d4c 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,6 @@
+## FACULTAD DE CIENCIAS FÍSICO MATEMÁTICAS - UANL
+## Luis Sebastián Martínez Vega
+
## Diff++
Un pequeño programa que consiste en un REPL donde se lee una función
diff --git a/include/lexer.hpp b/include/lexer.hpp
index 73c5717..8d0d826 100644
--- a/include/lexer.hpp
+++ b/include/lexer.hpp
@@ -1,3 +1,7 @@
+/* PIA - Lenguajes Modernos de Programación
+ * FACULTAD DE CIENCIAS FÍSICO MATEMÁTICAS
+ * Luis Sebastián Martínez Vega - LCC */
+
#include <string>
#ifndef LEXER_H
diff --git a/lexer.cpp b/lexer.cpp
index 0054f5a..c58ebb5 100644
--- a/lexer.cpp
+++ b/lexer.cpp
@@ -1,3 +1,7 @@
+/* PIA - Lenguajes Modernos de Programación
+ * FACULTAD DE CIENCIAS FÍSICO MATEMÁTICAS
+ * Luis Sebastián Martínez Vega - LCC */
+
#include <string>
#include "include/lexer.hpp"