summaryrefslogtreecommitdiffstats
path: root/report
diff options
context:
space:
mode:
Diffstat (limited to 'report')
-rw-r--r--report/esoteric_project_report.pdfbin189988 -> 211738 bytes
-rw-r--r--report/esoteric_project_report.tex30
2 files changed, 30 insertions, 0 deletions
diff --git a/report/esoteric_project_report.pdf b/report/esoteric_project_report.pdf
index b241efe..1261091 100644
--- a/report/esoteric_project_report.pdf
+++ b/report/esoteric_project_report.pdf
Binary files differ
diff --git a/report/esoteric_project_report.tex b/report/esoteric_project_report.tex
index 788226a..a6f0079 100644
--- a/report/esoteric_project_report.tex
+++ b/report/esoteric_project_report.tex
@@ -208,6 +208,36 @@ asdf
\end{center}
\end{table}
+\clearpage
+\chapter{BNF form}
+
+\begin{table}[h!]
+ \begin{center}
+
+ \begin{tabular}{|l|r|}
+ \hline
+ \textbf{Abbreviation} & \textbf{Term}\\
+ \hline
+ $<$statement$>$ ::= & $<$assignment$>$ $|$ \\
+ & IF $|$ \\
+ & WHILE \\
+ \hline
+ IF ::= & IF $<$expression$>$ THEN $<$statement$>$ END IF $|$\\
+ & IF $<$expression$>$ THEN $<$statement$>$ ELSE $<$statement$>$ END IF \\
+ \hline
+ DO ::= & DO $<$expression$>$ $<$expression$>$ = $<$expression$>$, \\
+ & $<$expression$>$ $<$statement$>$ continue $|$\\
+ & DO $<$expression$>$ $<$expression$>$ = $<$expression$>$, \\
+ & $<$expression$>$, $<$expression$>$ $<$statement$>$ continue \\
+ \hline
+
+
+ \end{tabular}
+ \label{tab:table1}
+ \caption{Grammar table for Fortran}
+ \end{center}
+\end{table}
+
\chapter{Methodology}\label{MethLab}
Describe here various methods that will be used in your project. Use different sections for distinctly different subjects and use subsections for specific details on the same subject. Only use subsubsections or paragraphs (which are not numbered) if you believe this is really necessary. Since implementation will happen in sprints, this section may need several updates with parts being added and deleted across the project.