From 85345d7d80eeb950ab64633ae1cb1f1c5dc87269 Mon Sep 17 00:00:00 2001 From: Alfie Eagleton <67986414+TheAlfanator@users.noreply.github.com> Date: Wed, 3 Nov 2021 16:56:38 +0000 Subject: New Project Working + Report --- report/esoteric_project_report.tex | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'report/esoteric_project_report.tex') 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. -- cgit v1.2.3