aboutsummaryrefslogtreecommitdiff
path: root/doc/code.tex
diff options
context:
space:
mode:
authorCamil Staps2016-09-25 00:26:27 +0200
committerCamil Staps2016-09-25 00:26:45 +0200
commit37ccc2bb0915cf5d39a7434805fe182a66d19258 (patch)
tree5321c28ca4dd248d0f4ba0ab781ae2340e565317 /doc/code.tex
parentCleanup: unsigned -> bool (stdbool.h) (diff)
Update documentation: graph rewriting, code names list
Diffstat (limited to 'doc/code.tex')
-rw-r--r--doc/code.tex18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/code.tex b/doc/code.tex
new file mode 100644
index 0000000..c25897a
--- /dev/null
+++ b/doc/code.tex
@@ -0,0 +1,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}
+}