first commit

This commit is contained in:
2026-05-25 21:33:48 -03:00
commit ad9176d909
42 changed files with 5788 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package org.neoflock.NeoNucleus;
public enum nn_Exit {
// no error
NN_OK,
// out of memory.
NN_ENOMEM,
// over the limit. For example, adding too many architectures to a machine.
NN_ELIMIT,
// internal stack underflow when managing the stack.
NN_EBELOWSTACK,
// internal stack overflow when carrying values.
NN_ENOSTACK,
// bad invocation, error message stored in computer state
NN_EBADCALL,
// bad state, the function was called at the wrong time
NN_EBADSTATE,
}