Complete first slide of AST to C

This commit is contained in:
Benjamin Loison 2022-12-16 15:33:39 +01:00
parent 9e96697991
commit dbf1583ffd

View File

@ -121,7 +121,16 @@
\section{Translation to C} \section{Translation to C}
\begin{frame} \begin{frame}
Use of three tricks, as our compiler only manages \texttt{bool}s, \texttt{int}s and \texttt{float}s:
Architecture similar to Arnaud's AST pretty-printer.
\pause
For instance, go from \texttt{counting.lus} to \texttt{counting.c}.
\pause
Use of three tricks, as our compiler only manages \texttt{bool}s, \texttt{int}s and \texttt{float}s:
\begin{enumerate} \begin{enumerate}
\item \texttt{0} can be interpreted as a \texttt{bool}, an \texttt{int} and a \texttt{float} \item \texttt{0} can be interpreted as a \texttt{bool}, an \texttt{int} and a \texttt{float}
\pause \pause