all repos — hex @ 25166d7919b755250db59a520e98303d736be715

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

Added support for wasm compilation.
h3rald h3rald@h3rald.com
Sun, 01 Dec 2024 14:35:01 +0100
commit

25166d7919b755250db59a520e98303d736be715

parent

cb73bf43edede5c886b5eb26a2215d09a9384005

2 files changed, 6 insertions(+), 1 deletions(-)

jump to
M .gitignore.gitignore

@@ -57,3 +57,5 @@

# Other example.hex web/out/ +web/assets/hex.js +web/assets/hex.wasm
M MakefileMakefile

@@ -6,6 +6,9 @@

hex: hex.c $(CC) $(CFLAGS) $(LDFLAGS) $< -o $@ +wasm: hex.c + emcc hex.c -o web/assets/hex.js + .PHONY: clean clean: rm hex

@@ -19,7 +22,7 @@ dtest:

./hex -d test.hex .PHONY: web -web: +web: wasm ./hex web.hex .PHONY: dweb