macro processor doc: update for changes 5fc83fad29 to b3798a0baa

issue#70
Houtan Bastani 2019-08-05 16:31:08 -04:00
parent b3798a0baa
commit 6cc56430a3
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 9 additions and 0 deletions

View File

@ -149,6 +149,15 @@
\item array
\item function
\end{itemize}
\item Variables/literals of the types listed above can be cast to other types
\begin{itemize}
\item \texttt{(bool) 3.9} $\rightarrow$ \texttt{true}
\item \texttt{(int) 3.9} $\rightarrow$ \texttt{3}
\item \texttt{(double) ``3.9''} $\rightarrow$ \texttt{3.9}
\item \texttt{(array) 3.9} $\rightarrow$ \texttt{[3.9]}
\item \texttt{(double) [3.9]} $\rightarrow$ \texttt{3.9}
\item \texttt{(double) [3.9, 3]} $\rightarrow$ \texttt{error}
\end{itemize}
\end{itemize}
\end{frame}