Skip to content
Snippets Groups Projects
Verified Commit 6cc56430 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

macro processor doc: update for changes...

macro processor doc: update for changes 5fc83fad to b3798a0b
parent b3798a0b
No related branches found
No related tags found
No related merge requests found
Pipeline #1573 passed
...@@ -149,6 +149,15 @@ ...@@ -149,6 +149,15 @@
\item array \item array
\item function \item function
\end{itemize} \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{itemize}
\end{frame} \end{frame}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment