all repos — hex @ d43839957b33ad012da7cf9e25d4d67f03770a32

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

Removed unnecessary symbols.
h3rald h3rald@h3rald.com
Thu, 25 Jun 2026 11:07:04 +0200
commit

d43839957b33ad012da7cf9e25d4d67f03770a32

parent

d848fa18e3e594b9e960c3af374c2101de7a211e

3 files changed, 2 insertions(+), 4 deletions(-)

jump to
M src/hex.csrc/hex.c

@@ -5472,7 +5472,7 @@ {

hex_error(ctx, "[symbol len] Quotation or string required"); result = 1; } - HEX_FREE(ctx, item); + HEX_FREE(ctx, item); return result; }
M src/hex.hsrc/hex.h

@@ -350,7 +350,6 @@ int hex_symbol_or(hex_context_t *ctx);

int hex_symbol_not(hex_context_t *ctx); int hex_symbol_xor(hex_context_t *ctx); int hex_symbol_cat(hex_context_t *ctx); -int hex_symbol_slice(hex_context_t *ctx); int hex_symbol_len(hex_context_t *ctx); int hex_symbol_get(hex_context_t *ctx); int hex_symbol_index(hex_context_t *ctx);

@@ -365,7 +364,6 @@ int hex_symbol_exit(hex_context_t *ctx);

int hex_symbol_exec(hex_context_t *ctx); int hex_symbol_run(hex_context_t *ctx); int hex_symbol_if(hex_context_t *ctx); -int hex_symbol_when(hex_context_t *ctx); int hex_symbol_while(hex_context_t *ctx); int hex_symbol_error(hex_context_t *ctx); int hex_symbol_try(hex_context_t *ctx);
M src/symbols.csrc/symbols.c

@@ -1443,7 +1443,7 @@ {

hex_error(ctx, "[symbol len] Quotation or string required"); result = 1; } - HEX_FREE(ctx, item); + HEX_FREE(ctx, item); return result; }