summaryrefslogtreecommitdiffhomepage
path: root/source
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-01-28 10:40:13 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-01-28 10:40:13 +0100
commit375626525607cba54d0260c66016e29ab1e9650c (patch)
tree180950bbeea21d3ed7b5d8973b618f9aed101670 /source
parent7adb52221d0c4388b8a6fb50aab15158c369174a (diff)
chore: working on WG03 paper.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'source')
-rw-r--r--source/wg03/wg03.tex18
1 files changed, 15 insertions, 3 deletions
diff --git a/source/wg03/wg03.tex b/source/wg03/wg03.tex
index b116b8f..d69be8e 100644
--- a/source/wg03/wg03.tex
+++ b/source/wg03/wg03.tex
@@ -50,7 +50,7 @@
\abstract
{
- Nectar as presented in its Primer is a systems compiled programming language—designed for low-level systems programming with high-level abstractions.
+ Nectar as presented in its primer is a systems compiled programming language—designed for low-level systems programming with high-level abstractions.
It is statically typed—compiled, and supports programming paradigms such as generic programming—and procedural programming.
}
@@ -58,7 +58,7 @@
\rule[1cm]{17cm}{0.01cm}
\end{center}
-\section{Getting Started: The 'Hello World' program.}
+\section{The 'Hello World' program.}
Let a program $P$ be:
@@ -67,16 +67,28 @@ extern printf;
const main()
{
- const writen := printf("%s:13", "Hello, world!\n");
+ const written := printf("%s:13", "Hello, world!\n");
return written;
}
+\end{lstlisting} $P$ shall print:
+
+\begin{lstlisting}
+$ Hello, world!
\end{lstlisting}
+ And return $written$ upon completion.
+A program $\Theta$ may be noted as:
+
+\begin{equation}
+ \Theta(x) = \lambda x.(P(x))
+\end{equation} Where $P(x)$ is $P$ with an argument of $x$.
\section{References}
\begin{enumerate}
\item NeKernel.org (2026), \href{https://nekernel.org/nekernel}{https://nekernel.org}
\item El Mahrouss, A. (2026). The Execution Semantics: On Axioms, Domains, and Authority. (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.18362375
+ \item El Mahrouss, A. (2026). The Mathematics of Execution. Zenodo. \\https://doi.org/10.5281/zenodo.18399140
+ \item Church, A. (1936). An Unsolvable Problem of Elementary Number Theory. American Journal of Mathematics, 58(2), 345–363. https://doi.org/10.2307/2371045
\end{enumerate}
\end{document}