basicdoc: major doc update

This commit is contained in:
minjaesong
2020-12-25 21:21:33 +09:00
parent 5a894c497a
commit 46a6bf3a0e
17 changed files with 464 additions and 189 deletions

View File

@@ -251,6 +251,19 @@ Code & Operation & Result \\
\emph{Currying} is an operation that returns new function that has given value applied to the original function's first parameter. See \ref{currying101} for tutorials.
\section{Constants}
Some variables are pre-defined on the language itself and cannot be modified; such variables are called \emph{constants}.
\begin{tabulary}{\textwidth}{rlL}
Name & Type & Value \\
\hline
NIL & Array & Empty Array \\
PI & Number & $3.141592653589793$ \\
TAU & Number & $6.283185307179586$ \\
EULER & Number & $2.718281828459045$
\end{tabulary}
\section{Syntax In EBNF}
If you're \emph{that} into the language theory of computer science, texts above are just waste of bytes/inks/pixel-spaces/whatever; this little section should be more than enough!