blob: c25897af7d0a847fbd21072127bec437eb2b2b67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
\section{Builtin code names}
\label{sec:code}
{\renewcommand{\arraystretch}{1.3}
\begin{tabular}{l l l}
\textbf{Name} & \textbf{Type} & \textbf{Description} \\\hline
\fuspel{mul a b}
& Int $\to$ Int $\to$ Int
& Multiplies $a$ and $b$ \\
\fuspel{sub a b}
& Int $\to$ Int $\to$ Int
& Subtracts $a$ from $b$ \\
\fuspel{time}
& Int
& The current time in seconds since the Unix Epoch. \\
\end{tabular}
}
|