summaryrefslogtreecommitdiffstats
path: root/report
diff options
context:
space:
mode:
authorAlfie Eagleton <67986414+TheAlfanator@users.noreply.github.com>2021-11-03 16:56:38 +0000
committerAlfie Eagleton <67986414+TheAlfanator@users.noreply.github.com>2021-11-03 16:56:38 +0000
commit85345d7d80eeb950ab64633ae1cb1f1c5dc87269 (patch)
treeb353c985d4cdf51517a907efd9c6968a62db5655 /report
parent85e2726ddedd2981425c5ac07f7257bce1a6ddbf (diff)
downloadesotericFORTRAN-85345d7d80eeb950ab64633ae1cb1f1c5dc87269.tar.gz
esotericFORTRAN-85345d7d80eeb950ab64633ae1cb1f1c5dc87269.zip
New Project Working + Report
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.