all repos — hex @ b6ecf29e68f7abfcd6c046a93b3acd8bdc12fe22

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

Fixes.
h3rald h3rald@h3rald.com
Thu, 28 Nov 2024 09:02:23 +0100
commit

b6ecf29e68f7abfcd6c046a93b3acd8bdc12fe22

parent

289940d9ae7c2ac09f3f93242e2892529b68c927

1 files changed, 48 insertions(+), 48 deletions(-)

jump to
M hex.chex.c

@@ -385,70 +385,70 @@ }

void hex_create_docs(hex_doc_dictionary_t *docs) { - hex_doc(docs, "!=", "-", "-", "-"); - hex_doc(docs, "%%", "-", "-", "-"); - hex_doc(docs, "&", "-", "-", "-"); - hex_doc(docs, "*", "-", "-", "-"); + hex_doc(docs, "store", "-", "-", "-"); + hex_doc(docs, "free", "-", "-", "-"); + hex_doc(docs, "type", "-", "-", "-"); + hex_doc(docs, "i", "-", "-", "-"); + hex_doc(docs, "eval", "-", "-", "-"); + hex_doc(docs, "puts", "-", "-", "-"); + hex_doc(docs, "warn", "-", "-", "-"); + hex_doc(docs, "print", "-", "-", "-"); + hex_doc(docs, "gets", "-", "-", "-"); hex_doc(docs, "+", "-", "-", "-"); hex_doc(docs, "-", "-", "-", "-"); + hex_doc(docs, "*", "-", "-", "-"); hex_doc(docs, "/", "-", "-", "-"); - hex_doc(docs, "<", "-", "-", "-"); + hex_doc(docs, "%", "-", "-", "-"); + hex_doc(docs, "&", "-", "-", "-"); + hex_doc(docs, "|", "-", "-", "-"); + hex_doc(docs, "^", "-", "-", "-"); + hex_doc(docs, "~", "-", "-", "-"); hex_doc(docs, "<<", "-", "-", "-"); - hex_doc(docs, "<=", "-", "-", "-"); + hex_doc(docs, ">>", "-", "-", "-"); + hex_doc(docs, "int", "-", "-", "-"); + hex_doc(docs, "str", "-", "-", "-"); + hex_doc(docs, "dec", "-", "-", "-"); + hex_doc(docs, "hex", "-", "-", "-"); hex_doc(docs, "==", "-", "-", "-"); + hex_doc(docs, "!=", "-", "-", "-"); hex_doc(docs, ">", "-", "-", "-"); + hex_doc(docs, "<", "-", "-", "-"); hex_doc(docs, ">=", "-", "-", "-"); - hex_doc(docs, ">>", "-", "-", "-"); - hex_doc(docs, "^", "-", "-", "-"); + hex_doc(docs, "<=", "-", "-", "-"); hex_doc(docs, "and", "-", "-", "-"); - hex_doc(docs, "append", "-", "-", "-"); - hex_doc(docs, "args", "-", "-", "-"); + hex_doc(docs, "or", "-", "-", "-"); + hex_doc(docs, "not", "-", "-", "-"); + hex_doc(docs, "xor", "-", "-", "-"); hex_doc(docs, "cat", "-", "-", "-"); - hex_doc(docs, "clear", "-", "-", "-"); - hex_doc(docs, "dec", "-", "-", "-"); - hex_doc(docs, "dup", "-", "-", "-"); - hex_doc(docs, "each", "-", "-", "-"); - hex_doc(docs, "error", "-", "-", "-"); - hex_doc(docs, "eval", "-", "-", "-"); - hex_doc(docs, "exec", "-", "-", "-"); - hex_doc(docs, "exit", "-", "-", "-"); - hex_doc(docs, "filter", "-", "-", "-"); - hex_doc(docs, "free", "-", "-", "-"); + hex_doc(docs, "slice", "-", "-", "-"); + hex_doc(docs, "len", "-", "-", "-"); hex_doc(docs, "get", "-", "-", "-"); - hex_doc(docs, "gets", "-", "-", "-"); - hex_doc(docs, "hex", "-", "-", "-"); - hex_doc(docs, "i", "-", "-", "-"); - hex_doc(docs, "if", "-", "-", "-"); - hex_doc(docs, "index", "-", "-", "-"); hex_doc(docs, "insert", "-", "-", "-"); - hex_doc(docs, "int", "-", "-", "-"); + hex_doc(docs, "index", "-", "-", "-"); hex_doc(docs, "join", "-", "-", "-"); - hex_doc(docs, "len", "-", "-", "-"); - hex_doc(docs, "map", "-", "-", "-"); - hex_doc(docs, "not", "-", "-", "-"); - hex_doc(docs, "or", "-", "-", "-"); - hex_doc(docs, "pop", "-", "-", "-"); - hex_doc(docs, "print", "-", "-", "-"); - hex_doc(docs, "puts", "-", "-", "-"); - hex_doc(docs, "q", "-", "-", "-"); + hex_doc(docs, "split", "-", "-", "-"); + hex_doc(docs, "replace", "-", "-", "-"); hex_doc(docs, "read", "-", "-", "-"); - hex_doc(docs, "replace", "-", "-", "-"); + hex_doc(docs, "write", "-", "-", "-"); + hex_doc(docs, "append", "-", "-", "-"); + hex_doc(docs, "args", "-", "-", "-"); + hex_doc(docs, "exit", "-", "-", "-"); + hex_doc(docs, "exec", "-", "-", "-"); hex_doc(docs, "run", "-", "-", "-"); - hex_doc(docs, "slice", "-", "-", "-"); - hex_doc(docs, "split", "-", "-", "-"); - hex_doc(docs, "stack", "-", "-", "-"); - hex_doc(docs, "store", "-", "-", "-"); - hex_doc(docs, "str", "-", "-", "-"); - hex_doc(docs, "swap", "-", "-", "-"); - hex_doc(docs, "try", "-", "-", "-"); - hex_doc(docs, "type", "-", "-", "-"); - hex_doc(docs, "warn", "-", "-", "-"); + hex_doc(docs, "if", "-", "-", "-"); hex_doc(docs, "when", "-", "-", "-"); hex_doc(docs, "while", "-", "-", "-"); - hex_doc(docs, "write", "-", "-", "-"); - hex_doc(docs, "xor", "-", "-", "-"); - hex_doc(docs, "|", "-", "-", "-"); - hex_doc(docs, "~", "-", "-", "-"); + hex_doc(docs, "each", "-", "-", "-"); + hex_doc(docs, "error", "-", "-", "-"); + hex_doc(docs, "try", "-", "-", "-"); + hex_doc(docs, "q", "-", "-", "-"); + hex_doc(docs, "map", "-", "-", "-"); + hex_doc(docs, "filter", "-", "-", "-"); + hex_doc(docs, "swap", "-", "-", "-"); + hex_doc(docs, "dup", "-", "-", "-"); + hex_doc(docs, "stack", "-", "-", "-"); + hex_doc(docs, "clear", "-", "-", "-"); + hex_doc(docs, "pop", "-", "-", "-"); } ////////////////////////////////////////